Boost GIL


Public Member Functions | List of all members
PixelConcept< P > Struct Template Reference

Pixel concept - A color base whose elements are channels. More...

#include <pixel.hpp>

Public Member Functions

void constraints ()
 

Detailed Description

template<typename P>
struct boost::gil::PixelConcept< P >

Pixel concept - A color base whose elements are channels.

concept PixelConcept<typename P> : ColorBaseConcept<P>, PixelBasedConcept<P>
{
where is_pixel<P>::value == true;
// where for each K [0..size<P>::value - 1]:
// ChannelConcept<kth_element_type<P, K>>;
typename P::value_type;
typename P::reference;
typename P::const_reference;
static const bool P::is_mutable;
template <PixelConcept P2> where { PixelConcept<P, P2> }
P::P(P2);
template <PixelConcept P2> where { PixelConcept<P, P2> }
bool operator==(const P&, const P2&);
template <PixelConcept P2> where { PixelConcept<P, P2> }
bool operator!=(const P&, const P2&);
};
A color base is a container of color elements (such as channels, channel references or channel pointe...
Definition concepts/color_base.hpp:138
Concept for all pixel-based GIL constructs.
Definition pixel_based.hpp:54
Pixel concept - A color base whose elements are channels.
Definition concepts/pixel.hpp:64
Pixel concept that is a Regular type.
Definition concepts/pixel.hpp:171

The documentation for this struct was generated from the following file: