OpenCV  3.0.0
Open Source Computer Vision
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | List of all members
cv::SparseMatIterator Class Reference

Read-write Sparse Matrix Iterator. More...

#include "mat.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...
 
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...
 
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...
 
- 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...
 
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 next element More...
 
SparseMatConstIterator operator++ (int)
 moves iterator to the next element More...
 
SparseMatConstIteratoroperator-- ()
 moves iterator to the previous element More...
 
SparseMatConstIterator operator-- (int)
 moves iterator to the previous element More...
 
SparseMatConstIteratoroperator= (const SparseMatConstIterator &it)
 the assignment operator More...
 
void seekEnd ()
 moves iterator to the element after the last element More...
 
template<typename _Tp >
const _Tp & value () const
 template method returning the current matrix element More...
 

Additional Inherited Members

- Public Attributes inherited from cv::SparseMatConstIterator
size_t hashidx
 
const SparseMatm
 
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

cv::SparseMatIterator::SparseMatIterator ( )

the default constructor

cv::SparseMatIterator::SparseMatIterator ( SparseMat _m)

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

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

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

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

the copy constructor

Member Function Documentation

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

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

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

moves iterator to the next element

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

moves iterator to the next element

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

the assignment operator

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

returns read-write reference to the current sparse matrix element


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