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

Read-Only Sparse Matrix Iterator. More...

#include "mat.hpp"

Inheritance diagram for cv::SparseMatConstIterator:
cv::SparseMatConstIterator_< _Tp > cv::SparseMatIterator cv::SparseMatIterator_< _Tp >

Public Member Functions

 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...
 

Public Attributes

size_t hashidx
 
const SparseMatm
 
ucharptr
 

Detailed Description

Read-Only Sparse Matrix Iterator.

Here is how to use the iterator to compute the sum of floating-point sparse matrix elements:

SparseMatConstIterator it = m.begin(), it_end = m.end();
double s = 0;
CV_Assert( m.type() == CV_32F );
for( ; it != it_end; ++it )
s += it.value<float>();

Constructor & Destructor Documentation

cv::SparseMatConstIterator::SparseMatConstIterator ( )

the default constructor

cv::SparseMatConstIterator::SparseMatConstIterator ( const SparseMat _m)

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

cv::SparseMatConstIterator::SparseMatConstIterator ( const SparseMatConstIterator it)

the copy constructor

Member Function Documentation

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

returns the current node of the sparse matrix. it.node->idx is the current element index

SparseMatConstIterator& cv::SparseMatConstIterator::operator++ ( )

moves iterator to the next element

SparseMatConstIterator cv::SparseMatConstIterator::operator++ ( int  )

moves iterator to the next element

SparseMatConstIterator& cv::SparseMatConstIterator::operator-- ( )

moves iterator to the previous element

SparseMatConstIterator cv::SparseMatConstIterator::operator-- ( int  )

moves iterator to the previous element

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

the assignment operator

void cv::SparseMatConstIterator::seekEnd ( )

moves iterator to the element after the last element

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

template method returning the current matrix element

Member Data Documentation

size_t cv::SparseMatConstIterator::hashidx
const SparseMat* cv::SparseMatConstIterator::m
uchar* cv::SparseMatConstIterator::ptr

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