OpenCV  3.0.0-dev
Open Source Computer Vision
Public Types | Public Member Functions | List of all members
cv::MatConstIterator_< _Tp > Class Template Reference

Matrix read-only iterator. More...

#include "mat.hpp"

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

Public Types

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

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...
 
_Tp operator* () const
 returns the current matrix element More...
 
MatConstIterator_operator++ ()
 increments the iterator More...
 
MatConstIterator_ operator++ (int)
 increments the iterator More...
 
MatConstIterator_operator+= (ptrdiff_t ofs)
 shifts the iterator forward by the specified number of elements More...
 
MatConstIterator_operator-- ()
 decrements the iterator More...
 
MatConstIterator_ operator-- (int)
 decrements the iterator More...
 
MatConstIterator_operator-= (ptrdiff_t ofs)
 shifts the iterator backward by the specified number of elements More...
 
MatConstIterator_operator= (const MatConstIterator_ &it)
 copy operator More...
 
_Tp operator[] (ptrdiff_t i) const
 returns the i-th matrix element, relative to the current 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...
 
ptrdiff_t lpos () const
 
const ucharoperator* () const
 returns the current matrix element More...
 
MatConstIteratoroperator++ ()
 increments the iterator More...
 
MatConstIterator operator++ (int)
 increments the iterator More...
 
MatConstIteratoroperator+= (ptrdiff_t ofs)
 shifts the iterator forward by the specified number of elements More...
 
MatConstIteratoroperator-- ()
 decrements the iterator More...
 
MatConstIterator operator-- (int)
 decrements the iterator More...
 
MatConstIteratoroperator-= (ptrdiff_t ofs)
 shifts the iterator backward by the specified number of elements More...
 
MatConstIteratoroperator= (const MatConstIterator &it)
 copy operator More...
 
const ucharoperator[] (ptrdiff_t i) const
 returns the i-th matrix element, relative to the current More...
 
Point pos () const
 returns the current iterator position More...
 
void pos (int *_idx) const
 returns the current iterator position More...
 
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
size_t elemSize
 
const Matm
 
const ucharptr
 
const ucharsliceEnd
 
const ucharsliceStart
 

Detailed Description

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

Matrix read-only iterator.

Member Typedef Documentation

template<typename _Tp>
typedef ptrdiff_t cv::MatConstIterator_< _Tp >::difference_type
template<typename _Tp>
typedef std::random_access_iterator_tag cv::MatConstIterator_< _Tp >::iterator_category
template<typename _Tp>
typedef const _Tp* cv::MatConstIterator_< _Tp >::pointer
template<typename _Tp>
typedef const _Tp& cv::MatConstIterator_< _Tp >::reference
template<typename _Tp>
typedef _Tp cv::MatConstIterator_< _Tp >::value_type

Constructor & Destructor Documentation

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

default constructor

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

constructor that sets the iterator to the beginning of the matrix

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

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

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

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

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

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

copy constructor

Member Function Documentation

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

returns the current matrix element

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

increments the iterator

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

increments the iterator

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

shifts the iterator forward by the specified number of elements

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

decrements the iterator

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

decrements the iterator

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

shifts the iterator backward by the specified number of elements

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

copy operator

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

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

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

returns the current iterator position


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