boost::gil::PixelBasedConcept

Concept for all pixel‐based GIL constructs.

Synopsis

template<typename P>
struct PixelBasedConcept;

Description

Pixel‐based constructs include pixels, iterators, locators, views and images whose value type is a pixel.

concept PixelBasedConcept<typename T>
{
    typename color_space_type<T>;
        where Metafunction<color_space_type<T> >;
        where ColorSpaceConcept<color_space_type<T>::type>;
    typename channel_mapping_type<T>;
        where Metafunction<channel_mapping_type<T> >;
        where ChannelMappingConcept<channel_mapping_type<T>::type>;
    typename is_planar<T>;
        where Metafunction<is_planar<T> >;
        where SameType<is_planar<T>::type, bool>;
};

Member Functions

Name

constraints

Created with MrDocs