Boost GIL


Classes | Functions
color_converted_view

Color converted view of another view. More...

Classes

class  color_convert_deref_fn< SrcConstRefP, DstP, CC >
 Function object that given a source pixel, returns it converted to a given color space and channel depth. Models: PixelDereferenceAdaptorConcept. More...
 
struct  color_converted_view_type< SrcView, DstP, CC >
 Returns the type of a view that does color conversion upon dereferencing its pixels. More...
 
struct  color_converted_view_type< any_image_view< ViewTypes >, DstP, CC >
 Returns the type of a runtime-specified view, color-converted to a given pixel type with user specified color converter. More...
 
struct  color_converted_view_type< any_image_view< ViewTypes >, DstP >
 Returns the type of a runtime-specified view, color-converted to a given pixel type with the default coor converter. More...
 

Functions

template<typename DstP , typename View , typename CC >
color_converted_view_type
< View, DstP, CC >::type 
color_converted_view (const View &src, CC cc)
 view of a different color space with a user defined color-converter
 
template<typename DstP , typename View >
color_converted_view_type
< View, DstP >::type 
color_converted_view (const View &src)
 overload of generic color_converted_view with the default color-converter
 
template<typename DstP , typename ViewTypes , typename CC >
color_converted_view_type
< any_image_view< ViewTypes >
, DstP, CC >::type 
color_converted_view (const any_image_view< ViewTypes > &src, CC)
 overload of generic color_converted_view with user defined color-converter
 
template<typename DstP , typename ViewTypes >
color_converted_view_type
< any_image_view< ViewTypes >
, DstP >::type 
color_converted_view (const any_image_view< ViewTypes > &src)
 overload of generic color_converted_view with the default color-converter
 
template<typename DstP , typename ViewTypes , typename CC >
color_converted_view_type
< any_image_view< ViewTypes >
, DstP, CC >::type 
any_color_converted_view (const any_image_view< ViewTypes > &src, CC)
 overload of generic color_converted_view with user defined color-converter These are workarounds for GCC 3.4, which thinks color_converted_view is ambiguous with the same method for templated views (in gil/image_view_factory.hpp)
 
template<typename DstP , typename ViewTypes >
color_converted_view_type
< any_image_view< ViewTypes >
, DstP >::type 
any_color_converted_view (const any_image_view< ViewTypes > &src)
 overload of generic color_converted_view with the default color-converter These are workarounds for GCC 3.4, which thinks color_converted_view is ambiguous with the same method for templated views (in gil/image_view_factory.hpp)
 

Detailed Description

Color converted view of another view.