|
metafunctions.hpp
Go to the documentation of this file.
11 /*************************************************************************************************/
57 template <typename BitField, typename ChannelBitSizes, typename Layout, bool IsMutable> struct bit_aligned_pixel_reference;
78 template <typename T, typename L> struct pixel_reference_is_basic< pixel<T,L>&> : public mpl::true_ {};
79 template <typename T, typename L> struct pixel_reference_is_basic<const pixel<T,L>&> : public mpl::true_ {};
80 template <typename TR, typename Cs> struct pixel_reference_is_basic<planar_pixel_reference<TR,Cs> > : public mpl::true_ {};
81 template <typename TR, typename Cs> struct pixel_reference_is_basic<const planar_pixel_reference<TR,Cs> > : public mpl::true_ {};
100 struct iterator_is_basic<memory_based_step_iterator<const pixel<T,L>*> > : public mpl::true_ {};
102 struct iterator_is_basic<memory_based_step_iterator<planar_pixel_iterator< T*,Cs> > > : public mpl::true_ {};
104 struct iterator_is_basic<memory_based_step_iterator<planar_pixel_iterator<const T*,Cs> > > : public mpl::true_ {};
110 template <typename Iterator> struct locator_is_basic<memory_based_2d_locator<memory_based_step_iterator<Iterator> > > : public iterator_is_basic<Iterator> {};
115 template <typename Loc> struct view_is_basic<image_view<Loc> > : public locator_is_basic<Loc> {};
120 template <typename Pixel, bool IsPlanar, typename Alloc> struct image_is_basic<image<Pixel,IsPlanar,Alloc> > : public mpl::true_ {};
131 template <typename It, bool IsBase> struct iterator_is_step_impl<It,IsBase,true> : public mpl::true_{};
150 template <typename L> struct locator_is_step_in_x : public iterator_is_step<typename L::x_iterator> {};
154 template <typename L> struct locator_is_step_in_y : public iterator_is_step<typename L::y_iterator> {};
158 template <typename V> struct view_is_step_in_x : public locator_is_step_in_x<typename V::xy_locator> {};
162 template <typename V> struct view_is_step_in_y : public locator_is_step_in_y<typename V::xy_locator> {};
174 struct pixel_is_reference : public mpl::or_<is_reference<Pixel>, pixel_reference_is_proxy<Pixel> > {};
184 template <typename R> struct pixel_reference_is_mutable : public mpl::bool_<remove_reference<R>::type::is_mutable> {};
190 template <typename L> struct locator_is_mutable : public iterator_is_mutable<typename L::x_iterator> {};
193 template <typename V> struct view_is_mutable : public iterator_is_mutable<typename V::x_iterator> {};
217 template <typename T, typename L, bool IsPlanar=false, bool IsMutable=true> struct pixel_reference_type{};
218 template <typename T, typename L> struct pixel_reference_type<T,L,false,true > { typedef pixel<T,L>& type; };
219 template <typename T, typename L> struct pixel_reference_type<T,L,false,false> { typedef const pixel<T,L>& type; };
220 template <typename T, typename L> struct pixel_reference_type<T,L,true,true> { typedef const planar_pixel_reference<typename channel_traits<T>::reference,typename color_space_type<L>::type> type; }; // TODO: Assert M=identity
221 template <typename T, typename L> struct pixel_reference_type<T,L,true,false> { typedef const planar_pixel_reference<typename channel_traits<T>::const_reference,typename color_space_type<L>::type> type; };// TODO: Assert M=identity
225 template <typename Pixel, bool IsPlanar=false, bool IsStep=false, bool IsMutable=true> struct iterator_type_from_pixel{};
226 template <typename Pixel> struct iterator_type_from_pixel<Pixel,false,false,true > { typedef Pixel* type; };
227 template <typename Pixel> struct iterator_type_from_pixel<Pixel,false,false,false> { typedef const Pixel* type; };
229 typedef planar_pixel_iterator<typename channel_traits<typename channel_type<Pixel>::type>::pointer,typename color_space_type<Pixel>::type> type;
232 typedef planar_pixel_iterator<typename channel_traits<typename channel_type<Pixel>::type>::const_pointer,typename color_space_type<Pixel>::type> type;
234 template <typename Pixel, bool IsPlanar, bool IsMutable> struct iterator_type_from_pixel<Pixel,IsPlanar,true,IsMutable> {
235 typedef memory_based_step_iterator<typename iterator_type_from_pixel<Pixel,IsPlanar,false,IsMutable>::type> type;
240 template <typename T, typename L, bool IsPlanar=false, bool IsStep=false, bool IsMutable=true> struct iterator_type{};
241 template <typename T, typename L> struct iterator_type<T,L,false,false,true > { typedef pixel<T,L>* type; };
242 template <typename T, typename L> struct iterator_type<T,L,false,false,false> { typedef const pixel<T,L>* type; };
243 template <typename T, typename L> struct iterator_type<T,L,true,false,true> { typedef planar_pixel_iterator<T*,typename L::color_space_t> type; }; // TODO: Assert M=identity
244 template <typename T, typename L> struct iterator_type<T,L,true,false,false> { typedef planar_pixel_iterator<const T*,typename L::color_space_t> type; }; // TODO: Assert M=identity
245 template <typename T, typename L, bool IsPlanar, bool IsMutable> struct iterator_type<T,L,IsPlanar,true,IsMutable> {
246 typedef memory_based_step_iterator<typename iterator_type<T,L,IsPlanar,false,IsMutable>::type> type;
271 typedef typename mpl::transform<typename mpl::pop_back<first_bits_vector>::type, ChannelBitSizesVector,
287 typedef packed_pixel<BitField, typename detail::packed_channel_references_vector_type<BitField,ChannelBitSizeVector>::type, Layout> type;
301 template <typename BitField, typename ChannelBitSizeVector, typename Layout, typename Alloc=std::allocator<unsigned char> >
303 typedef image<typename packed_pixel_type<BitField,ChannelBitSizeVector,Layout>::type,false,Alloc> type;
308 template <typename BitField, unsigned Size1, typename Layout, typename Alloc=std::allocator<unsigned char> >
309 struct packed_image1_type : public packed_image_type<BitField, mpl::vector1_c<unsigned, Size1>, Layout, Alloc> {};
313 template <typename BitField, unsigned Size1, unsigned Size2, typename Layout, typename Alloc=std::allocator<unsigned char> >
314 struct packed_image2_type : public packed_image_type<BitField, mpl::vector2_c<unsigned, Size1, Size2>, Layout, Alloc> {};
318 template <typename BitField, unsigned Size1, unsigned Size2, unsigned Size3, typename Layout, typename Alloc=std::allocator<unsigned char> >
319 struct packed_image3_type : public packed_image_type<BitField, mpl::vector3_c<unsigned, Size1, Size2, Size3>, Layout, Alloc> {};
323 template <typename BitField, unsigned Size1, unsigned Size2, unsigned Size3, unsigned Size4, typename Layout, typename Alloc=std::allocator<unsigned char> >
324 struct packed_image4_type : public packed_image_type<BitField, mpl::vector4_c<unsigned, Size1, Size2, Size3, Size4>, Layout, Alloc> {};
328 template <typename BitField, unsigned Size1, unsigned Size2, unsigned Size3, unsigned Size4, unsigned Size5, typename Layout, typename Alloc=std::allocator<unsigned char> >
329 struct packed_image5_type : public packed_image_type<BitField, mpl::vector5_c<unsigned, Size1, Size2, Size3, Size4, Size5>, Layout, Alloc> {};
338 template <typename ChannelBitSizeVector, typename Layout, typename Alloc=std::allocator<unsigned char> >
341 BOOST_STATIC_CONSTANT(int, bit_size = (mpl::accumulate<ChannelBitSizeVector, mpl::int_<0>, mpl::plus<mpl::_1, mpl::_2> >::type::value));
343 typedef const bit_aligned_pixel_reference<bitfield_t, ChannelBitSizeVector, Layout, true> bit_alignedref_t;
351 struct bit_aligned_image1_type : public bit_aligned_image_type<mpl::vector1_c<unsigned, Size1>, Layout, Alloc> {};
355 template <unsigned Size1, unsigned Size2, typename Layout, typename Alloc=std::allocator<unsigned char> >
356 struct bit_aligned_image2_type : public bit_aligned_image_type<mpl::vector2_c<unsigned, Size1, Size2>, Layout, Alloc> {};
360 template <unsigned Size1, unsigned Size2, unsigned Size3, typename Layout, typename Alloc=std::allocator<unsigned char> >
361 struct bit_aligned_image3_type : public bit_aligned_image_type<mpl::vector3_c<unsigned, Size1, Size2, Size3>, Layout, Alloc> {};
365 template <unsigned Size1, unsigned Size2, unsigned Size3, unsigned Size4, typename Layout, typename Alloc=std::allocator<unsigned char> >
366 struct bit_aligned_image4_type : public bit_aligned_image_type<mpl::vector4_c<unsigned, Size1, Size2, Size3, Size4>, Layout, Alloc> {};
370 template <unsigned Size1, unsigned Size2, unsigned Size3, unsigned Size4, unsigned Size5, typename Layout, typename Alloc=std::allocator<unsigned char> >
371 struct bit_aligned_image5_type : public bit_aligned_image_type<mpl::vector5_c<unsigned, Size1, Size2, Size3, Size4, Size5>, Layout, Alloc> {};
379 typedef pixel<Channel,Layout> type; // by default use gil::pixel. Specializations are provided for
387 struct pixel_value_type<const packed_dynamic_channel_reference<BitField,NumBits,IsMutable>,Layout> :
391 struct pixel_value_type< packed_channel_reference<BitField,FirstBit,NumBits,IsMutable>,Layout> :
394 struct pixel_value_type<const packed_channel_reference<BitField,FirstBit,NumBits,IsMutable>,Layout> :
399 public packed_pixel_type<typename detail::min_fast_uint<NumBits>::type, mpl::vector1_c<unsigned,NumBits>, Layout> {};
406 typedef typename type_from_x_iterator<typename iterator_type<T,L,IsPlanar,IsStepX,IsMutable>::type>::xy_locator_type type;
413 typedef typename type_from_x_iterator<typename iterator_type<T,L,IsPlanar,IsStepX,IsMutable>::type>::view_t type;
418 template <typename T, typename L, bool IsPlanar=false, typename Alloc=std::allocator<unsigned char> >
427 typedef typename type_from_x_iterator<typename iterator_type_from_pixel<Pixel,IsPlanar,IsStepX,IsMutable>::type>::view_t type;
434 template <typename Ref, typename T=use_default, typename L=use_default, typename IsPlanar=use_default, typename IsMutable=use_default>
437 typedef typename mpl::if_<is_same<T, use_default>, typename channel_type<pixel_t>::type, T >::type channel_t;
439 layout<typename color_space_type<pixel_t>::type, typename channel_mapping_type<pixel_t>::type>, L>::type layout_t;
440 static const bool mut =mpl::if_<is_same<IsMutable,use_default>, pixel_reference_is_mutable<Ref>, IsMutable>::type::value;
441 static const bool planar=mpl::if_<is_same<IsPlanar,use_default>, is_planar<pixel_t>, IsPlanar>::type::value;
449 template <typename Iterator, typename T=use_default, typename L=use_default, typename IsPlanar=use_default, typename IsStep=use_default, typename IsMutable=use_default>
451 typedef typename mpl::if_<is_same<T ,use_default>, typename channel_type<Iterator>::type, T >::type channel_t;
453 layout<typename color_space_type<Iterator>::type, typename channel_mapping_type<Iterator>::type>, L>::type layout_t;
455 static const bool mut =mpl::if_<is_same<IsMutable,use_default>, iterator_is_mutable<Iterator>, IsMutable>::type::value;
456 static const bool planar=mpl::if_<is_same<IsPlanar,use_default>, is_planar<Iterator>, IsPlanar>::type::value;
457 static const bool step =mpl::if_<is_same<IsStep ,use_default>, iterator_is_step<Iterator>, IsStep>::type::value;
465 template <typename View, typename T=use_default, typename L=use_default, typename IsPlanar=use_default, typename StepX=use_default, typename IsMutable=use_default>
467 typedef typename mpl::if_<is_same<T ,use_default>, typename channel_type<View>::type, T>::type channel_t;
469 layout<typename color_space_type<View>::type, typename channel_mapping_type<View>::type>, L>::type layout_t;
470 static const bool mut =mpl::if_<is_same<IsMutable,use_default>, view_is_mutable<View>, IsMutable>::type::value;
471 static const bool planar=mpl::if_<is_same<IsPlanar,use_default>, is_planar<View>, IsPlanar>::type::value;
472 static const bool step =mpl::if_<is_same<StepX ,use_default>, view_is_step_in_x<View>,StepX>::type::value;
480 template <typename Image, typename T=use_default, typename L=use_default, typename IsPlanar=use_default>
482 typedef typename mpl::if_<is_same<T ,use_default>, typename channel_type<Image>::type, T >::type channel_t;
484 layout<typename color_space_type<Image>::type, typename channel_mapping_type<Image>::type>, L>::type layout_t;
485 static const bool planar=mpl::if_<is_same<IsPlanar,use_default>, is_planar<Image>, IsPlanar>::type::value;
metafunction predicate determining whether the given iterator is a plain one or an adaptor over anoth... Definition: gil_concept.hpp:65 Returns the type of an interleaved packed image: an image whose channels may not be byte-aligned... Definition: metafunctions.hpp:302 Determines whether the given pixel reference is a proxy class or a native C++ reference. Definition: metafunctions.hpp:167 A reference proxy to a planar pixel. Models: HomogeneousColorBaseConcept, HomogeneousPixelConcept. Definition: metafunctions.hpp:46 Returns the type of a homogeneous image given the channel type, layout, and whether it operates on pl... Definition: metafunctions.hpp:419 Determines if the given locator has a horizontal step that could be set dynamically. Definition: metafunctions.hpp:150 Returns the type of a homogeneous view given the channel type, layout, whether it operates on planar ... Definition: metafunctions.hpp:412 A lightweight object that interprets memory as a 2D array of pixels. Models ImageViewConcept,PixelBasedConcept,HasDynamicXStepTypeConcept,HasDynamicYStepTypeConcept,HasTransposedTypeConcept. Definition: image_view.hpp:68 returns the base iterator for a given iterator adaptor. Provide an specialization when introducing ne... Definition: gil_concept.hpp:67 Returns the type of a single-channel image given its bitfield type, the bit size of its channel and i... Definition: metafunctions.hpp:309 Represents a pixel value (a container of channels). Models: HomogeneousColorBaseValueConcept, PixelValueConcept, HomogeneousPixelBasedConcept. Definition: metafunctions.hpp:44 Returns the type of a homogeneous iterator given the channel type, layout, whether it operates on pla... Definition: metafunctions.hpp:240 Returns the type of a four channel image given its bitfield type, the bit size of its channels and it... Definition: metafunctions.hpp:324 Returns the type of a two channel image given its bitfield type, the bit size of its channels and its... Definition: metafunctions.hpp:314 Channel utilities. Returns the type of a five channel bit-aligned image given the bit size of its channels and its layou... Definition: metafunctions.hpp:371 Heterogeneous pixel reference corresponding to non-byte-aligned bit range. Models ColorBaseConcept... Definition: bit_aligned_pixel_reference.hpp:125 Constructs a pixel iterator type from a source pixel iterator type by changing some of the properties... Definition: metafunctions.hpp:450 An iterator over planar pixels. Models HomogeneousColorBaseConcept, PixelIteratorConcept, HomogeneousPixelBasedConcept, MemoryBasedIteratorConcept, HasDynamicXStepTypeConcept. Definition: algorithm.hpp:53 Determines if a given pixel iterator is basic Basic iterators must use gil::pixel (if interleaved)... Definition: metafunctions.hpp:88 Concept check classes for GIL concepts. Constructs a pixel reference type from a source pixel reference type by changing some of the properti... Definition: metafunctions.hpp:435 Returns the type of a four channel bit-aligned image given the bit size of its channels and its layou... Definition: metafunctions.hpp:366 Memory-based pixel locator. Models: PixelLocatorConcept,HasDynamicXStepTypeConcept,HasDynamicYStepTypeConcept,HasTransposedTypeConceptThe class takes a step iterator as a parameter. The step iterator provides navigation along the vertical axis while its base iterator provides horizontal navigation. Definition: algorithm.hpp:57 Given a pixel iterator defining access to pixels along a row, returns the types of the corresponding ... Definition: metafunctions.hpp:252 Basic images must use basic views and std::allocator of char. Definition: metafunctions.hpp:119 Determines if the given pixel reference is mutable (i.e. its channels can be changed) ... Definition: metafunctions.hpp:184 Determines if the given locator is mutable (i.e. its pixels can be changed) Definition: metafunctions.hpp:190 Constructs a homogeneous image type from a source image type by changing some of the properties... Definition: metafunctions.hpp:481 Represents a color space and ordering of channels in memory. Definition: utilities.hpp:306 container interface over image view. Models ImageConcept, PixelBasedConcept Definition: image.hpp:59 Determines if a given locator is basic. A basic locator is memory-based and has basic x_iterator and ... Definition: metafunctions.hpp:109 Returns the type of a homogeneous pixel reference given the channel type, layout, whether it operates... Definition: metafunctions.hpp:217 Returns the type of a packed image whose pixels may not be byte aligned. For example, an "rgb222" image is bit-aligned because its pixel spans six bits. Definition: metafunctions.hpp:339 Determines if the given view has a vertical step that could be set dynamically. Definition: metafunctions.hpp:162 Determines if the given view is mutable (i.e. its pixels can be changed) Definition: metafunctions.hpp:193 Returns the type of a homogeneous pixel given the channel type and layout. Definition: metafunctions.hpp:378 Returns the type of a homogeneous locator given the channel type, layout, whether it operates on plan... Definition: metafunctions.hpp:405 GIL configuration file. Metafunction predicate returning whether the given iterator allows for changing its values... Definition: gil_concept.hpp:64 Constructs an image view type from a source view type by changing some of the properties.Use use_default for the properties of the source view that you want to keep. Definition: metafunctions.hpp:466 Returns the type of a packed pixel given its bitfield type, the bit size of its channels and its layo... Definition: metafunctions.hpp:286 Heterogeneous pixel value whose channel references can be constructed from the pixel bitfield and the... Definition: gil_concept.hpp:79 Given a model of a pixel, determines whether the model represents a pixel reference (as opposed to pi... Definition: metafunctions.hpp:174 Returns the type of a single-channel bit-aligned image given the bit size of its channel and its layo... Definition: metafunctions.hpp:351 Determines if a given pixel reference is basic Basic references must use gil::pixel& (if interleaved)... Definition: metafunctions.hpp:77 Returns the type of a three channel image given its bitfield type, the bit size of its channels and i... Definition: metafunctions.hpp:319 Determines if the given locator has a vertical step that could be set dynamically. Definition: metafunctions.hpp:154 Determines if the given iterator has a step that could be set dynamically. Definition: metafunctions.hpp:127 Returns the type of a two channel bit-aligned image given the bit size of its channels and its layout... Definition: metafunctions.hpp:356 Returns the type of a pixel iterator given the pixel type, whether it operates on planar data... Definition: metafunctions.hpp:225 Returns the type of a view the pixel type, whether it operates on planar data and whether it has a st... Definition: metafunctions.hpp:426 Returns the type of a three channel bit-aligned image given the bit size of its channels and its layo... Definition: metafunctions.hpp:361 Determines if the given view has a horizontal step that could be set dynamically. ... Definition: metafunctions.hpp:158 Returns the type of a five channel image given its bitfield type, the bit size of its channels and it... Definition: metafunctions.hpp:329 Generated on Mon Mar 26 2018 16:26:15 for Generic Image Library by
1.8.6
|