boost::gil::view
view overloads
Synopses
Returns the non‐constant‐pixel view of any image. The returned view is any view.
template<typename... Images>
[[__always_inline__]]
any_image<Images...>::view_t
view(any_image<Images...>& img);
template<
typename Index,
typename Pixel>
indexed_image<Index, Pixel>::view_t const&
view(indexed_image<Index, Pixel>& img);
Returns the non‐constant‐pixel view of an image
template<
typename Pixel,
bool IsPlanar,
typename Alloc>
image<Pixel, IsPlanar, Alloc>::view_t const&
view(image<Pixel, IsPlanar, Alloc>& img);
template<
typename Index_View,
typename Palette_View>
indexed_image_view<indexed_image_locator_type<Index_View::locator, Palette_View::locator>::type>
view(
Index_View iv,
Palette_View pv);
Template Parameters
Name |
Description |
Images |
Models ImageVectorConcept |
Created with MrDocs