OpenCV  2.4.13.4
Open Source Computer Vision
cv::SparseMatIterator Class Reference

#include <core.hpp>

Inheritance diagram for cv::SparseMatIterator:
cv::SparseMatConstIterator

Public Member Functions

 SparseMatIterator ()
 the default constructor More...
 
 SparseMatIterator (SparseMat *_m)
 the full constructor setting the iterator to the first sparse matrix element More...
 
 SparseMatIterator (SparseMat *_m, const int *idx)
 the full constructor setting the iterator to the specified sparse matrix element More...
 
 SparseMatIterator (const SparseMatIterator &it)
 the copy constructor More...
 
SparseMatIteratoroperator= (const SparseMatIterator &it)
 the assignment operator More...
 
template<typename _Tp >
_Tp & value () const
 returns read-write reference to the current sparse matrix element More...
 
SparseMat::Nodenode () const
 returns pointer to the current sparse matrix node. it.node->idx is the index of the current element (do not modify it!) More...
 
SparseMatIteratoroperator++ ()
 moves iterator to the next element More...
 
SparseMatIterator operator++ (int)
 moves iterator to the next element More...
 
- Public Member Functions inherited from cv::SparseMatConstIterator
 SparseMatConstIterator ()
 the default constructor More...
 
 SparseMatConstIterator (const SparseMat *_m)
 the full constructor setting the iterator to the first sparse matrix element More...
 
 SparseMatConstIterator (const SparseMatConstIterator &it)
 the copy constructor More...
 
SparseMatConstIteratoroperator= (const SparseMatConstIterator &it)
 the assignment operator More...
 
template<typename _Tp >
const _Tp & value () const
 template method returning the current matrix element More...
 
const SparseMat::Nodenode () const
 returns the current node of the sparse matrix. it.node->idx is the current element index More...
 
SparseMatConstIteratoroperator-- ()
 moves iterator to the previous element More...
 
SparseMatConstIterator operator-- (int)
 moves iterator to the previous element More...
 
SparseMatConstIteratoroperator++ ()
 moves iterator to the next element More...
 
SparseMatConstIterator operator++ (int)
 moves iterator to the next element More...
 
void seekEnd ()
 moves iterator to the element after the last element More...
 

Additional Inherited Members

- Public Attributes inherited from cv::SparseMatConstIterator
const SparseMatm
 
size_t hashidx
 
ucharptr
 

Detailed Description

Read-write Sparse Matrix Iterator

The class is similar to cv::SparseMatConstIterator, but can be used for in-place modification of the matrix elements.

Constructor & Destructor Documentation

§ SparseMatIterator() [1/4]

cv::SparseMatIterator::SparseMatIterator ( )
inline

the default constructor

§ SparseMatIterator() [2/4]

cv::SparseMatIterator::SparseMatIterator ( SparseMat _m)
inline

the full constructor setting the iterator to the first sparse matrix element

§ SparseMatIterator() [3/4]

cv::SparseMatIterator::SparseMatIterator ( SparseMat _m,
const int idx 
)

the full constructor setting the iterator to the specified sparse matrix element

§ SparseMatIterator() [4/4]

cv::SparseMatIterator::SparseMatIterator ( const SparseMatIterator it)
inline

the copy constructor

Member Function Documentation

§ node()

SparseMat::Node * cv::SparseMatIterator::node ( ) const
inline

returns pointer to the current sparse matrix node. it.node->idx is the index of the current element (do not modify it!)

§ operator++() [1/2]

SparseMatIterator & cv::SparseMatIterator::operator++ ( )
inline

moves iterator to the next element

§ operator++() [2/2]

SparseMatIterator cv::SparseMatIterator::operator++ ( int  )
inline

moves iterator to the next element

§ operator=()

SparseMatIterator & cv::SparseMatIterator::operator= ( const SparseMatIterator it)
inline

the assignment operator

§ value()

template<typename _Tp >
_Tp & cv::SparseMatIterator::value ( ) const
inline

returns read-write reference to the current sparse matrix element


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