[][src]Trait opencv::core::SparseMatIteratorTrait

pub trait SparseMatIteratorTrait: SparseMatConstIteratorTrait {
    pub fn as_raw_SparseMatIterator(&self) -> *const c_void;
pub fn as_raw_mut_SparseMatIterator(&mut self) -> *mut c_void; pub fn node(&self) -> Result<SparseMat_Node> { ... } }

Read-write Sparse Matrix Iterator

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

Required methods

Loading content...

Provided methods

pub fn node(&self) -> Result<SparseMat_Node>[src]

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

Loading content...

Implementors

impl SparseMatIteratorTrait for SparseMatIterator[src]

Loading content...