boost::gil::color_converted_view
color_converted_view overloads
Synopses
Declared in <boost/gil/extension/dynamic_image/image_view_factory.hpp>
overload of generic color_converted_view with the default color‐converter
template<
typename DstP,
typename View>
color_converted_view_type<View, DstP>::type
color_converted_view(View const& src);
overload of generic color_converted_view with the default color‐converter
template<
typename DstP,
typename... Views>
color_converted_view_type<any_image_view<Views...>, DstP>::type
color_converted_view(any_image_view<Views...> const& src);
view of a different color space with a user defined color‐converter
template<
typename DstP,
typename View,
typename CC>
color_converted_view_type<View, DstP, CC>::type
color_converted_view(
View const& src,
CC cc);
overload of generic color_converted_view with user defined color‐converter
template<
typename DstP,
typename... Views,
typename CC>
color_converted_view_type<any_image_view<Views...>, DstP, CC>::type
color_converted_view(
any_image_view<Views...> const& src,
CC cc);
Template Parameters
Name |
Description |
Views |
Models Boost.MP11‐compatible list of models of ImageViewConcept |
Created with MrDocs