Trait opencv::core::prelude::SparseMat_NodeTrait[][src]

pub trait SparseMat_NodeTrait {
    fn as_raw_SparseMat_Node(&self) -> *const c_void;
fn as_raw_mut_SparseMat_Node(&mut self) -> *mut c_void; fn hashval(&self) -> size_t { ... }
fn set_hashval(&mut self, val: size_t) { ... }
fn next(&self) -> size_t { ... }
fn set_next(&mut self, val: size_t) { ... }
fn idx(&mut self) -> &mut [i32; 32] { ... } }
Expand description

sparse matrix node - element of a hash table

Required methods

Provided methods

hash value

hash value

index of the next node in the same hash table entry

index of the next node in the same hash table entry

index of the matrix element

Implementors