#include <gil_concept.hpp>
List of all members.
\code template <typename View> concept ImageViewConcept : RandomAccess2DImageViewConcept<View> { where PixelValueConcept<value_type>; where PixelIteratorConcept<x_iterator>; where PixelIteratorConcept<y_iterator>; where x_coord_t == y_coord_t; typename pixel_t = value_type; typename channel_t = pixel_t::channel_t; typename color_space_t = pixel_t::color_space_t; typename coord_t = x_coord_t; static const size_t num_channels = color_space_t::num_channels; };