![]() |
OpenCV
4.0.0-pre
Open Source Computer Vision
|
Looking for a C++ dev who knows OpenCV?
I'm looking for work. Hire me! |
STL-style Sequence Iterator inherited from the CvSeqReader structure. More...
#include "core_c.h"


Public Member Functions | |
| SeqIterator () | |
| the default constructor More... | |
| SeqIterator (const Seq< _Tp > &seq, bool seekEnd=false) | |
| the constructor setting the iterator to the beginning or to the end of the sequence More... | |
| _Tp & | operator* () |
| returns reference to the current sequence element More... | |
| const _Tp & | operator* () const |
| returns read-only reference to the current sequence element More... | |
| SeqIterator & | operator++ () |
| moves iterator to the next sequence element More... | |
| SeqIterator | operator++ (int) const |
| moves iterator to the next sequence element More... | |
| SeqIterator & | operator+= (int) |
| moves iterator forward by the specified offset (possibly negative) More... | |
| SeqIterator & | operator-- () |
| moves iterator to the previous sequence element More... | |
| SeqIterator | operator-- (int) const |
| moves iterator to the previous sequence element More... | |
| SeqIterator & | operator-= (int) |
| moves iterator backward by the specified offset (possibly negative) More... | |
| void | seek (size_t pos) |
| positions the iterator within the sequence More... | |
| size_t | tell () const |
| reports the current iterator position More... | |
Public Attributes | |
| CvSeqBlock * | block |
| current block More... | |
| schar * | block_max |
| pointer to the end of block More... | |
| schar * | block_min |
| pointer to the beginning of block More... | |
| int | delta_index |
| = seq->first->start_index More... | |
| int | header_size |
| int | index |
| schar * | prev_elem |
| pointer to previous element More... | |
| schar * | ptr |
| pointer to element be read next More... | |
| CvSeq * | seq |
| sequence, beign read More... | |
STL-style Sequence Iterator inherited from the CvSeqReader structure.
|
inherited |
current block
|
inherited |
pointer to the end of block
|
inherited |
pointer to the beginning of block
|
inherited |
= seq->first->start_index
|
inherited |
| int cv::SeqIterator< _Tp >::index |
Referenced by cv::operator-(), and cv::operator==().
|
inherited |
pointer to previous element
|
inherited |
pointer to element be read next
|
inherited |
sequence, beign read
Referenced by cv::operator-(), and cv::operator==().