pub trait MatConstIteratorTraitConst {
    fn as_raw_MatConstIterator(&self) -> *const c_void;

    fn m(&self) -> Mat { ... }
    fn elem_size(&self) -> size_t { ... }
    fn ptr(&self) -> *const u8 { ... }
    fn slice_start(&self) -> *const u8 { ... }
    fn slice_end(&self) -> *const u8 { ... }
    fn try_deref(&self) -> Result<*const u8> { ... }
    fn get(&self, i: ptrdiff_t) -> Result<*const u8> { ... }
    fn pos(&self) -> Result<Point> { ... }
    fn pos_to(&self, _idx: &mut i32) -> Result<()> { ... }
    fn lpos(&self) -> Result<ptrdiff_t> { ... }
}
Expand description

/////////////////////////////// MatConstIterator //////////////////////////////////

Required Methods

Provided Methods

returns the current matrix element

returns the i-th matrix element, relative to the current

returns the current iterator position

returns the current iterator position

Implementors