OpenCV  3.4.4
Open Source Computer Vision
Public Types | Public Member Functions | Public Attributes | List of all members
cv::MatConstIterator Class Reference

#include "mat.hpp"

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

Public Types

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 *_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)
 

Public Attributes

size_t elemSize
 
const Matm
 
const ucharptr
 
const ucharsliceEnd
 
const ucharsliceStart
 

Member Typedef Documentation

§ difference_type

§ iterator_category

typedef std::random_access_iterator_tag cv::MatConstIterator::iterator_category

§ pointer

§ reference

§ value_type

Constructor & Destructor Documentation

§ MatConstIterator() [1/6]

cv::MatConstIterator::MatConstIterator ( )

default constructor

§ MatConstIterator() [2/6]

cv::MatConstIterator::MatConstIterator ( const Mat _m)

constructor that sets the iterator to the beginning of the matrix

§ MatConstIterator() [3/6]

cv::MatConstIterator::MatConstIterator ( const Mat _m,
int  _row,
int  _col = 0 
)

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

§ MatConstIterator() [4/6]

cv::MatConstIterator::MatConstIterator ( const Mat _m,
Point  _pt 
)

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

§ MatConstIterator() [5/6]

cv::MatConstIterator::MatConstIterator ( const Mat _m,
const int *  _idx 
)

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

§ MatConstIterator() [6/6]

cv::MatConstIterator::MatConstIterator ( const MatConstIterator it)

copy constructor

Member Function Documentation

§ lpos()

ptrdiff_t cv::MatConstIterator::lpos ( ) const

§ operator*()

const uchar* cv::MatConstIterator::operator* ( ) const

returns the current matrix element

§ operator++() [1/2]

MatConstIterator& cv::MatConstIterator::operator++ ( )

increments the iterator

§ operator++() [2/2]

MatConstIterator cv::MatConstIterator::operator++ ( int  )

increments the iterator

§ operator+=()

MatConstIterator& cv::MatConstIterator::operator+= ( ptrdiff_t  ofs)

shifts the iterator forward by the specified number of elements

§ operator--() [1/2]

MatConstIterator& cv::MatConstIterator::operator-- ( )

decrements the iterator

§ operator--() [2/2]

MatConstIterator cv::MatConstIterator::operator-- ( int  )

decrements the iterator

§ operator-=()

MatConstIterator& cv::MatConstIterator::operator-= ( ptrdiff_t  ofs)

shifts the iterator backward by the specified number of elements

§ operator=()

MatConstIterator& cv::MatConstIterator::operator= ( const MatConstIterator it)

copy operator

§ operator[]()

const uchar* cv::MatConstIterator::operator[] ( ptrdiff_t  i) const

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

§ pos() [1/2]

Point cv::MatConstIterator::pos ( ) const

returns the current iterator position

§ pos() [2/2]

void cv::MatConstIterator::pos ( int *  _idx) const

returns the current iterator position

§ seek() [1/2]

void cv::MatConstIterator::seek ( ptrdiff_t  ofs,
bool  relative = false 
)

§ seek() [2/2]

void cv::MatConstIterator::seek ( const int *  _idx,
bool  relative = false 
)

Member Data Documentation

§ elemSize

size_t cv::MatConstIterator::elemSize

§ m

const Mat* cv::MatConstIterator::m

§ ptr

const uchar* cv::MatConstIterator::ptr

§ sliceEnd

const uchar* cv::MatConstIterator::sliceEnd

§ sliceStart

const uchar* cv::MatConstIterator::sliceStart

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