boost::gil::fill_pixels
fill_pixels overloads
Synopses
Declared in <boost/gil/algorithm.hpp>
std::fill for image views
template<
typename View,
typename Value>
[[__always_inline__]]
void
fill_pixels(
View const& view,
Value const& value);
fill_pixels for any image view. The pixel to fill with must be compatible with the current view
template<
typename... Types,
typename Value>
void
fill_pixels(
any_image_view<Types...> const& view,
Value const& val);
template<
typename Locator,
typename Value>
void
fill_pixels(
indexed_image_view<Locator> const& view,
Value const& value);
Template Parameters
Name |
Description |
Types |
Model Boost.MP11‐compatible list of models of MutableImageViewConcept |
Created with MrDocs