Boost GIL


pixel_based.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_CONCEPTS_PIXEL_BASED_HPP
9 #define BOOST_GIL_CONCEPTS_PIXEL_BASED_HPP
10 
11 #include <boost/gil/concepts/basic.hpp>
12 #include <boost/gil/concepts/channel.hpp>
13 #include <boost/gil/concepts/color.hpp>
14 #include <boost/gil/concepts/concept_check.hpp>
15 #include <boost/gil/concepts/fwd.hpp>
16 
17 #include <cstddef>
18 
19 #if defined(BOOST_CLANG)
20 #pragma clang diagnostic push
21 #pragma clang diagnostic ignored "-Wunused-local-typedefs"
22 #endif
23 
24 #if defined(BOOST_GCC) && (BOOST_GCC >= 40900)
25 #pragma GCC diagnostic push
26 #pragma GCC diagnostic ignored "-Wunused-local-typedefs"
27 #endif
28 
29 namespace boost { namespace gil {
30 
51 template <typename P>
53 {
54  void constraints()
55  {
56  using color_space_t = typename color_space_type<P>::type;
57  gil_function_requires<ColorSpaceConcept<color_space_t>>();
58 
59  using channel_mapping_t = typename channel_mapping_type<P>::type ;
60  gil_function_requires<ChannelMappingConcept<channel_mapping_t>>();
61 
62  static const bool planar = is_planar<P>::value;
63  ignore_unused_variable_warning(planar);
64 
65  // This is not part of the concept, but should still work
66  static const std::size_t nc = num_channels<P>::value;
67  ignore_unused_variable_warning(nc);
68  }
69 };
70 
81 template <typename P>
83 {
84  void constraints()
85  {
86  gil_function_requires<PixelBasedConcept<P>>();
87 
88  using channel_t = typename channel_type<P>::type;
89  gil_function_requires<ChannelConcept<channel_t>>();
90  }
91 };
92 
93 }} // namespace boost::gil
94 
95 #if defined(BOOST_CLANG)
96 #pragma clang diagnostic pop
97 #endif
98 
99 #if defined(BOOST_GCC) && (BOOST_GCC >= 40900)
100 #pragma GCC diagnostic pop
101 #endif
102 
103 #endif
Concept for homogeneous pixel-based GIL constructs.
Definition: pixel_based.hpp:82
Concept for all pixel-based GIL constructs.
Definition: pixel_based.hpp:52
Definition: color_convert.hpp:31
Returns the number of channels of a pixel-based GIL construct.
Definition: locator.hpp:38