OpenCV  2.4.13.3
Open Source Computer Vision
cv::MatConstIterator_< _Tp > Class Template Reference

#include <core.hpp>

Inheritance diagram for cv::MatConstIterator_< _Tp >:
cv::MatConstIterator cv::MatIterator_< _Tp >

Public Types

typedef _Tp value_type
 
typedef ptrdiff_t difference_type
 
typedef const _Tp * pointer
 
typedef const _Tp & reference
 
typedef std::random_access_iterator_tag iterator_category
 
- Public Types inherited from cv::MatConstIterator
typedef ucharvalue_type
 
typedef ptrdiff_t difference_type
 
typedef const uchar ** pointer
 
typedef ucharreference
 
typedef std::random_access_iterator_tag iterator_category
 

Public Member Functions

 MatConstIterator_ ()
 default constructor More...
 
 MatConstIterator_ (const Mat_< _Tp > *_m)
 constructor that sets the iterator to the beginning of the matrix More...
 
 MatConstIterator_ (const Mat_< _Tp > *_m, int _row, int _col=0)
 constructor that sets the iterator to the specified element of the matrix More...
 
 MatConstIterator_ (const Mat_< _Tp > *_m, Point _pt)
 constructor that sets the iterator to the specified element of the matrix More...
 
 MatConstIterator_ (const Mat_< _Tp > *_m, const int *_idx)
 constructor that sets the iterator to the specified element of the matrix More...
 
 MatConstIterator_ (const MatConstIterator_ &it)
 copy constructor More...
 
MatConstIterator_operator= (const MatConstIterator_ &it)
 copy operator More...
 
_Tp operator* () const
 returns the current matrix element More...
 
_Tp operator[] (ptrdiff_t i) const
 returns the i-th matrix element, relative to the current More...
 
MatConstIterator_operator+= (ptrdiff_t ofs)
 shifts the iterator forward by the specified number of elements More...
 
MatConstIterator_operator-= (ptrdiff_t ofs)
 shifts the iterator backward by the specified number of elements More...
 
MatConstIterator_operator-- ()
 decrements the iterator More...
 
MatConstIterator_ operator-- (int)
 decrements the iterator More...
 
MatConstIterator_operator++ ()
 increments the iterator More...
 
MatConstIterator_ operator++ (int)
 increments the iterator More...
 
Point pos () const
 returns the current iterator position More...
 
- Public Member Functions inherited from cv::MatConstIterator
 MatConstIterator ()
 default constructor More...
 
 MatConstIterator (const Mat *_m)
 constructor that sets the iterator to the beginning of the matrix More...
 
 MatConstIterator (const Mat *_m, int _row, int _col=0)
 constructor that sets the iterator to the specified element of the matrix More...
 
 MatConstIterator (const Mat *_m, Point _pt)
 constructor that sets the iterator to the specified element of the matrix More...
 
 MatConstIterator (const Mat *_m, const int *_idx)
 constructor that sets the iterator to the specified element of the matrix More...
 
 MatConstIterator (const MatConstIterator &it)
 copy constructor More...
 
MatConstIteratoroperator= (const MatConstIterator &it)
 copy operator More...
 
ucharoperator* () const
 returns the current matrix element More...
 
ucharoperator[] (ptrdiff_t i) const
 returns the i-th matrix element, relative to the current More...
 
MatConstIteratoroperator+= (ptrdiff_t ofs)
 shifts the iterator forward by the specified number of elements More...
 
MatConstIteratoroperator-= (ptrdiff_t ofs)
 shifts the iterator backward by the specified number of elements More...
 
MatConstIteratoroperator-- ()
 decrements the iterator More...
 
MatConstIterator operator-- (int)
 decrements the iterator More...
 
MatConstIteratoroperator++ ()
 increments the iterator More...
 
MatConstIterator operator++ (int)
 increments the iterator More...
 
Point pos () const
 returns the current iterator position More...
 
void pos (int *_idx) const
 returns the current iterator position More...
 
ptrdiff_t lpos () const
 
void seek (ptrdiff_t ofs, bool relative=false)
 
void seek (const int *_idx, bool relative=false)
 

Additional Inherited Members

- Public Attributes inherited from cv::MatConstIterator
const Matm
 
size_t elemSize
 
ucharptr
 
ucharsliceStart
 
ucharsliceEnd
 

Detailed Description

template<typename _Tp>
class cv::MatConstIterator_< _Tp >

Matrix read-only iterator

Member Typedef Documentation

§ difference_type

template<typename _Tp>
typedef ptrdiff_t cv::MatConstIterator_< _Tp >::difference_type

§ iterator_category

template<typename _Tp>
typedef std::random_access_iterator_tag cv::MatConstIterator_< _Tp >::iterator_category

§ pointer

template<typename _Tp>
typedef const _Tp* cv::MatConstIterator_< _Tp >::pointer

§ reference

template<typename _Tp>
typedef const _Tp& cv::MatConstIterator_< _Tp >::reference

§ value_type

template<typename _Tp>
typedef _Tp cv::MatConstIterator_< _Tp >::value_type

Constructor & Destructor Documentation

§ MatConstIterator_() [1/6]

template<typename _Tp >
cv::MatConstIterator_< _Tp >::MatConstIterator_ ( )
inline

default constructor

§ MatConstIterator_() [2/6]

template<typename _Tp >
cv::MatConstIterator_< _Tp >::MatConstIterator_ ( const Mat_< _Tp > *  _m)
inline

constructor that sets the iterator to the beginning of the matrix

§ MatConstIterator_() [3/6]

template<typename _Tp >
cv::MatConstIterator_< _Tp >::MatConstIterator_ ( const Mat_< _Tp > *  _m,
int  _row,
int  _col = 0 
)
inline

constructor that sets the iterator to the specified element of the matrix

§ MatConstIterator_() [4/6]

template<typename _Tp >
cv::MatConstIterator_< _Tp >::MatConstIterator_ ( const Mat_< _Tp > *  _m,
Point  _pt 
)
inline

constructor that sets the iterator to the specified element of the matrix

§ MatConstIterator_() [5/6]

template<typename _Tp>
cv::MatConstIterator_< _Tp >::MatConstIterator_ ( const Mat_< _Tp > *  _m,
const int _idx 
)

constructor that sets the iterator to the specified element of the matrix

§ MatConstIterator_() [6/6]

template<typename _Tp >
cv::MatConstIterator_< _Tp >::MatConstIterator_ ( const MatConstIterator_< _Tp > &  it)
inline

copy constructor

Member Function Documentation

§ operator*()

template<typename _Tp >
_Tp cv::MatConstIterator_< _Tp >::operator* ( ) const
inline

returns the current matrix element

§ operator++() [1/2]

template<typename _Tp >
MatConstIterator_< _Tp > & cv::MatConstIterator_< _Tp >::operator++ ( )
inline

increments the iterator

§ operator++() [2/2]

template<typename _Tp >
MatConstIterator_< _Tp > cv::MatConstIterator_< _Tp >::operator++ ( int  )
inline

increments the iterator

§ operator+=()

template<typename _Tp >
MatConstIterator_< _Tp > & cv::MatConstIterator_< _Tp >::operator+= ( ptrdiff_t  ofs)
inline

shifts the iterator forward by the specified number of elements

§ operator--() [1/2]

template<typename _Tp >
MatConstIterator_< _Tp > & cv::MatConstIterator_< _Tp >::operator-- ( )
inline

decrements the iterator

§ operator--() [2/2]

template<typename _Tp >
MatConstIterator_< _Tp > cv::MatConstIterator_< _Tp >::operator-- ( int  )
inline

decrements the iterator

§ operator-=()

template<typename _Tp >
MatConstIterator_< _Tp > & cv::MatConstIterator_< _Tp >::operator-= ( ptrdiff_t  ofs)
inline

shifts the iterator backward by the specified number of elements

§ operator=()

template<typename _Tp >
MatConstIterator_< _Tp > & cv::MatConstIterator_< _Tp >::operator= ( const MatConstIterator_< _Tp > &  it)
inline

copy operator

§ operator[]()

template<typename _Tp >
_Tp cv::MatConstIterator_< _Tp >::operator[] ( ptrdiff_t  i) const
inline

returns the i-th matrix element, relative to the current

§ pos()

template<typename _Tp >
Point cv::MatConstIterator_< _Tp >::pos ( ) const
inline

returns the current iterator position


The documentation for this class was generated from the following files: