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

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

sparse matrix node - element of a hash table

Required methods

Loading content...

Provided methods

pub fn hashval(&self) -> size_t[src]

hash value

pub fn set_hashval(&mut self, val: size_t)[src]

hash value

pub fn next(&self) -> size_t[src]

index of the next node in the same hash table entry

pub fn set_next(&mut self, val: size_t)[src]

index of the next node in the same hash table entry

pub fn idx(&mut self) -> &mut [i32; 32][src]

index of the matrix element

Loading content...

Implementors

impl SparseMat_NodeTrait for SparseMat_Node[src]

Loading content...