image_view.hpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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_IMAGE_VIEW_H
  10. #define GIL_IMAGE_VIEW_H
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief image view class
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. /// \date 2005-2007 \n Last updated on February 12, 2007
  17. ///
  18. ////////////////////////////////////////////////////////////////////////////////////////
  19. #include <cstddef>
  20. #include <iterator>
  21. #include "gil_config.hpp"
  22. #include "iterator_from_2d.hpp"
  23. //#ifdef _MSC_VER
  24. //#pragma warning(push)
  25. //#pragma warning(disable : 4244) // conversion from 'gil::image<V,Alloc>::coord_t' to 'int', possible loss of data (visual studio compiler doesn't realize that the two types are the same)
  26. //#endif
  27. namespace boost { namespace gil {
  28. ////////////////////////////////////////////////////////////////////////////////////////
  29. /// \class image_view
  30. /// \ingroup ImageViewModel PixelBasedModel
  31. /// \brief A lightweight object that interprets memory as a 2D array of pixels. Models ImageViewConcept,PixelBasedConcept,HasDynamicXStepTypeConcept,HasDynamicYStepTypeConcept,HasTransposedTypeConcept
  32. ///
  33. /// Image view consists of a pixel 2D locator (defining the mechanism for navigating in 2D)
  34. /// and the image dimensions.
  35. ///
  36. /// Image views to images are what ranges are to STL containers. They are lightweight objects,
  37. /// that don't own the pixels. It is the user's responsibility that the underlying data remains
  38. /// valid for the lifetime of the image view.
  39. ///
  40. /// Similar to iterators and ranges, constness of views does not extend to constness of pixels.
  41. /// A const \p image_view does not allow changing its location in memory (resizing, moving) but does
  42. /// not prevent one from changing the pixels. The latter requires an image view whose value_type
  43. /// is const.
  44. ///
  45. /// Images have interfaces consistent with STL 1D random access containers, so they can be used
  46. /// directly in STL algorithms like:
  47. /// \code
  48. /// std::fill(img.begin(), img.end(), red_pixel);
  49. /// \endcode
  50. ///
  51. /// In addition, horizontal, vertical and 2D random access iterators are provided.
  52. ///
  53. /// Note also that \p image_view does not require that its element type be a pixel. It could be
  54. /// instantiated with a locator whose \p value_type models only \p Regular. In this case the image
  55. /// view models the weaker RandomAccess2DImageViewConcept, and does not model PixelBasedConcept.
  56. /// Many generic algorithms don't require the elements to be pixels.
  57. ///
  58. ////////////////////////////////////////////////////////////////////////////////////////
  59. template <typename Loc> // Models 2D Pixel Locator
  60. class image_view {
  61. public:
  62. // typedefs required by ConstRandomAccessNDImageViewConcept
  63. static const std::size_t num_dimensions=2;
  64. typedef typename Loc::value_type value_type;
  65. typedef typename Loc::reference reference; // result of dereferencing
  66. typedef typename Loc::coord_t coord_t; // 1D difference type (same for all dimensions)
  67. typedef coord_t difference_type; // result of operator-(1d_iterator,1d_iterator)
  68. typedef typename Loc::point_t point_t;
  69. typedef Loc locator;
  70. typedef image_view<typename Loc::const_t> const_t; // same as this type, but over const values
  71. template <std::size_t D> struct axis {
  72. typedef typename Loc::template axis<D>::coord_t coord_t; // difference_type along each dimension
  73. typedef typename Loc::template axis<D>::iterator iterator; // 1D iterator type along each dimension
  74. };
  75. typedef iterator_from_2d<Loc> iterator; // 1D iterator type for each pixel left-to-right inside top-to-bottom
  76. typedef std::reverse_iterator<iterator> reverse_iterator;
  77. typedef std::size_t size_type;
  78. // typedefs required by ConstRandomAccess2DImageViewConcept
  79. typedef locator xy_locator;
  80. typedef typename xy_locator::x_iterator x_iterator; // pixel iterator along a row
  81. typedef typename xy_locator::y_iterator y_iterator; // pixel iterator along a column
  82. typedef typename xy_locator::x_coord_t x_coord_t;
  83. typedef typename xy_locator::y_coord_t y_coord_t;
  84. template <typename Deref> struct add_deref {
  85. typedef image_view<typename Loc::template add_deref<Deref>::type> type;
  86. static type make(const image_view<Loc>& iv, const Deref& d) { return type(iv.dimensions(), Loc::template add_deref<Deref>::make(iv.pixels(),d)); }
  87. };
  88. image_view() : _dimensions(0,0) {}
  89. template <typename View> image_view(const View& iv) : _dimensions(iv.dimensions()), _pixels(iv.pixels()) {}
  90. template <typename L2> image_view(const point_t& sz , const L2& loc) : _dimensions(sz), _pixels(loc) {}
  91. template <typename L2> image_view(coord_t width, coord_t height, const L2& loc) : _dimensions(x_coord_t(width),y_coord_t(height)), _pixels(loc) {}
  92. template <typename View> image_view& operator=(const View& iv) { _pixels=iv.pixels(); _dimensions=iv.dimensions(); return *this; }
  93. image_view& operator=(const image_view& iv) { _pixels=iv.pixels(); _dimensions=iv.dimensions(); return *this; }
  94. template <typename View> bool operator==(const View& v) const { return pixels()==v.pixels() && dimensions()==v.dimensions(); }
  95. template <typename View> bool operator!=(const View& v) const { return !(*this==v); }
  96. template <typename L2> friend void swap(image_view<L2>& x, image_view<L2>& y);
  97. const point_t& dimensions() const { return _dimensions; }
  98. const locator& pixels() const { return _pixels; }
  99. x_coord_t width() const { return dimensions().x; }
  100. y_coord_t height() const { return dimensions().y; }
  101. std::size_t num_channels() const { return gil::num_channels<value_type>::value; }
  102. bool is_1d_traversable() const { return _pixels.is_1d_traversable(width()); }
  103. //\{@
  104. /// \name 1D navigation
  105. size_type size() const { return width()*height(); }
  106. iterator begin() const { return iterator(_pixels,_dimensions.x); }
  107. iterator end() const { return begin()+(difference_type)size(); } // potential performance problem!
  108. reverse_iterator rbegin() const { return reverse_iterator(end()); }
  109. reverse_iterator rend() const { return reverse_iterator(begin()); }
  110. reference operator[](difference_type i) const { return begin()[i]; } // potential performance problem!
  111. iterator at(difference_type i)const { return begin()+i; }
  112. iterator at(const point_t& p) const { return begin()+p.y*width()+p.x; }
  113. iterator at(x_coord_t x, y_coord_t y)const { return begin()+y*width()+x; }
  114. //\}@
  115. //\{@
  116. /// \name 2-D navigation
  117. reference operator()(const point_t& p) const { return _pixels(p.x,p.y); }
  118. reference operator()(x_coord_t x, y_coord_t y)const { return _pixels(x,y); }
  119. template <std::size_t D> typename axis<D>::iterator axis_iterator(const point_t& p) const { return _pixels.axis_iterator<D>(p); }
  120. xy_locator xy_at(x_coord_t x, y_coord_t y) const { return _pixels+point_t(x_coord_t(x),y_coord_t(y)); }
  121. locator xy_at(const point_t& p) const { return _pixels+p; }
  122. //\}@
  123. //\{@
  124. /// \name X navigation
  125. x_iterator x_at(x_coord_t x, y_coord_t y) const { return _pixels.x_at(x,y); }
  126. x_iterator x_at(const point_t& p) const { return _pixels.x_at(p); }
  127. x_iterator row_begin(y_coord_t y) const { return x_at(0,y); }
  128. x_iterator row_end(y_coord_t y) const { return x_at(width(),y); }
  129. //\}@
  130. //\{@
  131. /// \name Y navigation
  132. y_iterator y_at(x_coord_t x, y_coord_t y) const { return xy_at(x,y).y(); }
  133. y_iterator y_at(const point_t& p) const { return xy_at(p).y(); }
  134. y_iterator col_begin(x_coord_t x) const { return y_at(x,0); }
  135. y_iterator col_end(x_coord_t x) const { return y_at(x,height()); }
  136. //\}@
  137. private:
  138. template <typename L2> friend class image_view;
  139. point_t _dimensions;
  140. xy_locator _pixels;
  141. };
  142. template <typename L2>
  143. inline void swap(image_view<L2>& x, image_view<L2>& y) {
  144. using std::swap;
  145. swap(x._dimensions,y._dimensions);
  146. swap(x._pixels, y._pixels); // TODO: Extend further
  147. }
  148. /////////////////////////////
  149. // PixelBasedConcept
  150. /////////////////////////////
  151. template <typename L>
  152. struct channel_type<image_view<L> > : public channel_type<L> {};
  153. template <typename L>
  154. struct color_space_type<image_view<L> > : public color_space_type<L> {};
  155. template <typename L>
  156. struct channel_mapping_type<image_view<L> > : public channel_mapping_type<L> {};
  157. template <typename L>
  158. struct is_planar<image_view<L> > : public is_planar<L> {};
  159. /////////////////////////////
  160. // HasDynamicXStepTypeConcept
  161. /////////////////////////////
  162. template <typename L>
  163. struct dynamic_x_step_type<image_view<L> > {
  164. typedef image_view<typename dynamic_x_step_type<L>::type> type;
  165. };
  166. /////////////////////////////
  167. // HasDynamicYStepTypeConcept
  168. /////////////////////////////
  169. template <typename L>
  170. struct dynamic_y_step_type<image_view<L> > {
  171. typedef image_view<typename dynamic_y_step_type<L>::type> type;
  172. };
  173. /////////////////////////////
  174. // HasTransposedTypeConcept
  175. /////////////////////////////
  176. template <typename L>
  177. struct transposed_type<image_view<L> > {
  178. typedef image_view<typename transposed_type<L>::type> type;
  179. };
  180. } } // namespace boost::gil
  181. //#ifdef _MSC_VER
  182. //#pragma warning(pop)
  183. //#endif
  184. #endif