|
| 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...
|
|
const _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...
|
|
const _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...
|
|
| 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 uchar * | 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...
|
|
const uchar * | 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...
|
|
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) |
|
template<typename _Tp>
class cv::MatConstIterator_< _Tp >
Matrix read-only iterator.