Boost GIL


rgb.hpp
1 //
2 // Copyright 2005-2007 Adobe Systems Incorporated
3 //
4 // Distributed under the Boost Software License, Version 1.0
5 // See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt
7 //
8 #ifndef BOOST_GIL_RGB_HPP
9 #define BOOST_GIL_RGB_HPP
10 
11 #include <boost/gil/metafunctions.hpp>
12 #include <boost/gil/planar_pixel_iterator.hpp>
13 
14 #include <boost/mpl/range_c.hpp>
15 #include <boost/mpl/vector_c.hpp>
16 
17 #include <cstddef>
18 
19 namespace boost { namespace gil {
20 
23 
25 struct red_t {};
26 
28 struct green_t {};
29 
31 struct blue_t {};
33 
35 using rgb_t = mpl::vector3<red_t,green_t,blue_t>;
36 
41 
44 template <typename IC>
45 inline
47 planar_rgb_view(std::size_t width, std::size_t height,
48  IC r, IC g, IC b,
49  std::ptrdiff_t rowsize_in_bytes)
50 {
51  using view_t = typename type_from_x_iterator<planar_pixel_iterator<IC,rgb_t>>::view_t;
52  return view_t(width, height,
53  typename view_t::locator(planar_pixel_iterator<IC,rgb_t>(r,g,b),
54  rowsize_in_bytes));
55 }
56 
57 }} // namespace boost::gil
58 
59 #endif
Definition: algorithm.hpp:30
An iterator over planar pixels. Models HomogeneousColorBaseConcept, PixelIteratorConcept, HomogeneousPixelBasedConcept, MemoryBasedIteratorConcept, HasDynamicXStepTypeConcept.
Definition: algorithm.hpp:34
Green.
Definition: rgb.hpp:28
Given a pixel iterator defining access to pixels along a row, returns the types of the corresponding ...
Definition: metafunctions.hpp:239
Represents a color space and ordering of channels in memory.
Definition: utilities.hpp:247
Blue.
Definition: rgb.hpp:31
type_from_x_iterator< planar_pixel_iterator< IC, rgb_t > >::view_t planar_rgb_view(std::size_t width, std::size_t height, IC r, IC g, IC b, std::ptrdiff_t rowsize_in_bytes)
from raw RGB planar data
Definition: rgb.hpp:47
Red.
Definition: rgb.hpp:25