pixel_iterator.hpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. Copyright 2005-2007 Adobe Systems Incorporated
  3. Use, modification and distribution are subject to the Boost Software License,
  4. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. See http://opensource.adobe.com/gil for most recent version including documentation.
  7. */
  8. /*************************************************************************************************/
  9. #ifndef GIL_PIXEL_ITERATOR_H
  10. #define GIL_PIXEL_ITERATOR_H
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief pixel iterator support
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. /// \date 2005-2007 \n May 16, 2006
  17. ///
  18. ////////////////////////////////////////////////////////////////////////////////////////
  19. #include <cassert>
  20. #include <iterator>
  21. #include "gil_config.hpp"
  22. #include "gil_concept.hpp"
  23. #include "utilities.hpp"
  24. #include "pixel.hpp"
  25. namespace boost { namespace gil {
  26. //forwarded declaration (as this file is included in step_iterator.hpp)
  27. template <typename Iterator>
  28. class memory_based_step_iterator;
  29. template <typename Iterator> struct dynamic_x_step_type;
  30. /// \brief metafunction predicate determining whether the given iterator is a plain one or an adaptor over another iterator.
  31. /// Examples of adaptors are the step iterator and the dereference iterator adaptor.
  32. template <typename It>
  33. struct is_iterator_adaptor : public mpl::false_{};
  34. /// \brief returns the base iterator for a given iterator adaptor. Provide an specialization when introducing new iterator adaptors
  35. template <typename It>
  36. struct iterator_adaptor_get_base;
  37. /// \brief Changes the base iterator of an iterator adaptor. Provide an specialization when introducing new iterator adaptors
  38. template <typename It, typename NewBaseIt>
  39. struct iterator_adaptor_rebind;
  40. /// \brief Returns the type of an iterator just like the input iterator, except operating over immutable values
  41. template <typename It>
  42. struct const_iterator_type;
  43. // The default implementation when the iterator is a C pointer is to use the standard constness semantics
  44. template <typename T> struct const_iterator_type< T*> { typedef const T* type; };
  45. template <typename T> struct const_iterator_type<const T*> { typedef const T* type; };
  46. /// \brief Metafunction predicate returning whether the given iterator allows for changing its values
  47. /// \ingroup GILIsMutable
  48. template <typename It>
  49. struct iterator_is_mutable{};
  50. // The default implementation when the iterator is a C pointer is to use the standard constness semantics
  51. template <typename T> struct iterator_is_mutable< T*> : public mpl::true_{};
  52. template <typename T> struct iterator_is_mutable<const T*> : public mpl::false_{};
  53. /// \defgroup PixelIteratorModelInterleavedPtr C pointer to a pixel
  54. /// \ingroup PixelIteratorModel
  55. /// \brief Iterators over interleaved pixels.
  56. /// A C pointer to a model of PixelValueConcept is used as an iterator over interleaved pixels. Models PixelIteratorConcept, HomogeneousPixelBasedConcept, HasDynamicXStepTypeConcept, MemoryBasedIteratorConcept
  57. /////////////////////////////
  58. // HasDynamicXStepTypeConcept
  59. /////////////////////////////
  60. /// \ingroup PixelIteratorModelInterleavedPtr
  61. template <typename Pixel>
  62. struct dynamic_x_step_type<Pixel*> {
  63. typedef memory_based_step_iterator<Pixel*> type;
  64. };
  65. /// \ingroup PixelIteratorModelInterleavedPtr
  66. template <typename Pixel>
  67. struct dynamic_x_step_type<const Pixel*> {
  68. typedef memory_based_step_iterator<const Pixel*> type;
  69. };
  70. /////////////////////////////
  71. // PixelBasedConcept
  72. /////////////////////////////
  73. template <typename Pixel> struct color_space_type< Pixel*> : public color_space_type<Pixel> {};
  74. template <typename Pixel> struct color_space_type<const Pixel*> : public color_space_type<Pixel> {};
  75. template <typename Pixel> struct channel_mapping_type< Pixel*> : public channel_mapping_type<Pixel> {};
  76. template <typename Pixel> struct channel_mapping_type<const Pixel*> : public channel_mapping_type<Pixel> {};
  77. template <typename Pixel> struct is_planar< Pixel*> : public is_planar<Pixel> {};
  78. template <typename Pixel> struct is_planar<const Pixel*> : public is_planar<Pixel> {};
  79. /////////////////////////////
  80. // HomogeneousPixelBasedConcept
  81. /////////////////////////////
  82. template <typename Pixel> struct channel_type<Pixel*> : public channel_type<Pixel> {};
  83. template <typename Pixel> struct channel_type<const Pixel*> : public channel_type<Pixel> {};
  84. ////////////////////////////////////////////////////////////////////////////////////////
  85. ///
  86. /// Support for pixel iterator movement measured in memory units (bytes or bits) as opposed to pixel type. \n
  87. /// Necessary to handle image row alignment and channel plane alignment.
  88. ///
  89. ////////////////////////////////////////////////////////////////////////////////////////
  90. /////////////////////////////
  91. // MemoryBasedIteratorConcept
  92. /////////////////////////////
  93. template <typename T>
  94. struct byte_to_memunit : public mpl::int_<1> {};
  95. template <typename P>
  96. inline std::ptrdiff_t memunit_step(const P*) { return sizeof(P); }
  97. template <typename P>
  98. inline std::ptrdiff_t memunit_distance(const P* p1, const P* p2) {
  99. return (gil_reinterpret_cast_c<const unsigned char*>(p2)-gil_reinterpret_cast_c<const unsigned char*>(p1));
  100. }
  101. template <typename P>
  102. inline void memunit_advance(P* &p, std::ptrdiff_t diff) {
  103. p=(P*)((unsigned char*)(p)+diff);
  104. }
  105. template <typename P>
  106. inline P* memunit_advanced(const P* p, std::ptrdiff_t diff) {
  107. return (P*)((char*)(p)+diff);
  108. }
  109. // memunit_advanced_ref
  110. // (shortcut to advancing a pointer by a given number of memunits and taking the reference in case the compiler is not smart enough)
  111. template <typename P>
  112. inline P& memunit_advanced_ref(P* p, std::ptrdiff_t diff) {
  113. return *memunit_advanced(p,diff);
  114. }
  115. } } // namespace boost::gil
  116. #endif