123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- #ifndef GIL_IMAGE_VIEW_H
- #define GIL_IMAGE_VIEW_H
- #include <cstddef>
- #include <iterator>
- #include "gil_config.hpp"
- #include "iterator_from_2d.hpp"
- namespace boost { namespace gil {
- template <typename Loc>
- class image_view {
- public:
- static const std::size_t num_dimensions=2;
- typedef typename Loc::value_type value_type;
- typedef typename Loc::reference reference;
- typedef typename Loc::coord_t coord_t;
- typedef coord_t difference_type;
- typedef typename Loc::point_t point_t;
- typedef Loc locator;
- typedef image_view<typename Loc::const_t> const_t;
- template <std::size_t D> struct axis {
- typedef typename Loc::template axis<D>::coord_t coord_t;
- typedef typename Loc::template axis<D>::iterator iterator;
- };
- typedef iterator_from_2d<Loc> iterator;
- typedef std::reverse_iterator<iterator> reverse_iterator;
- typedef std::size_t size_type;
- typedef locator xy_locator;
- typedef typename xy_locator::x_iterator x_iterator;
- typedef typename xy_locator::y_iterator y_iterator;
- typedef typename xy_locator::x_coord_t x_coord_t;
- typedef typename xy_locator::y_coord_t y_coord_t;
- template <typename Deref> struct add_deref {
- typedef image_view<typename Loc::template add_deref<Deref>::type> type;
- static type make(const image_view<Loc>& iv, const Deref& d) { return type(iv.dimensions(), Loc::template add_deref<Deref>::make(iv.pixels(),d)); }
- };
- image_view() : _dimensions(0,0) {}
- template <typename View> image_view(const View& iv) : _dimensions(iv.dimensions()), _pixels(iv.pixels()) {}
- template <typename L2> image_view(const point_t& sz , const L2& loc) : _dimensions(sz), _pixels(loc) {}
- 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) {}
- template <typename View> image_view& operator=(const View& iv) { _pixels=iv.pixels(); _dimensions=iv.dimensions(); return *this; }
- image_view& operator=(const image_view& iv) { _pixels=iv.pixels(); _dimensions=iv.dimensions(); return *this; }
- template <typename View> bool operator==(const View& v) const { return pixels()==v.pixels() && dimensions()==v.dimensions(); }
- template <typename View> bool operator!=(const View& v) const { return !(*this==v); }
- template <typename L2> friend void swap(image_view<L2>& x, image_view<L2>& y);
- const point_t& dimensions() const { return _dimensions; }
- const locator& pixels() const { return _pixels; }
- x_coord_t width() const { return dimensions().x; }
- y_coord_t height() const { return dimensions().y; }
- std::size_t num_channels() const { return gil::num_channels<value_type>::value; }
- bool is_1d_traversable() const { return _pixels.is_1d_traversable(width()); }
-
-
- size_type size() const { return width()*height(); }
- iterator begin() const { return iterator(_pixels,_dimensions.x); }
- iterator end() const { return begin()+(difference_type)size(); }
- reverse_iterator rbegin() const { return reverse_iterator(end()); }
- reverse_iterator rend() const { return reverse_iterator(begin()); }
- reference operator[](difference_type i) const { return begin()[i]; }
- iterator at(difference_type i)const { return begin()+i; }
- iterator at(const point_t& p) const { return begin()+p.y*width()+p.x; }
- iterator at(x_coord_t x, y_coord_t y)const { return begin()+y*width()+x; }
-
-
-
- reference operator()(const point_t& p) const { return _pixels(p.x,p.y); }
- reference operator()(x_coord_t x, y_coord_t y)const { return _pixels(x,y); }
- template <std::size_t D> typename axis<D>::iterator axis_iterator(const point_t& p) const { return _pixels.axis_iterator<D>(p); }
- 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)); }
- locator xy_at(const point_t& p) const { return _pixels+p; }
-
-
-
- x_iterator x_at(x_coord_t x, y_coord_t y) const { return _pixels.x_at(x,y); }
- x_iterator x_at(const point_t& p) const { return _pixels.x_at(p); }
- x_iterator row_begin(y_coord_t y) const { return x_at(0,y); }
- x_iterator row_end(y_coord_t y) const { return x_at(width(),y); }
-
-
-
- y_iterator y_at(x_coord_t x, y_coord_t y) const { return xy_at(x,y).y(); }
- y_iterator y_at(const point_t& p) const { return xy_at(p).y(); }
- y_iterator col_begin(x_coord_t x) const { return y_at(x,0); }
- y_iterator col_end(x_coord_t x) const { return y_at(x,height()); }
-
- private:
- template <typename L2> friend class image_view;
- point_t _dimensions;
- xy_locator _pixels;
- };
- template <typename L2>
- inline void swap(image_view<L2>& x, image_view<L2>& y) {
- using std::swap;
- swap(x._dimensions,y._dimensions);
- swap(x._pixels, y._pixels);
- }
- template <typename L>
- struct channel_type<image_view<L> > : public channel_type<L> {};
- template <typename L>
- struct color_space_type<image_view<L> > : public color_space_type<L> {};
- template <typename L>
- struct channel_mapping_type<image_view<L> > : public channel_mapping_type<L> {};
- template <typename L>
- struct is_planar<image_view<L> > : public is_planar<L> {};
- template <typename L>
- struct dynamic_x_step_type<image_view<L> > {
- typedef image_view<typename dynamic_x_step_type<L>::type> type;
- };
- template <typename L>
- struct dynamic_y_step_type<image_view<L> > {
- typedef image_view<typename dynamic_y_step_type<L>::type> type;
- };
- template <typename L>
- struct transposed_type<image_view<L> > {
- typedef image_view<typename transposed_type<L>::type> type;
- };
- } }
- #endif
|