Trait machine_vision_formats::Stride[][src]

pub trait Stride {
    fn stride(&self) -> usize;
}
Expand description

An image whose data is stored such that successive rows are a stride apart.

This is sometimes also called “pitch”.

Required methods

the width (in bytes) of each row of image data

This is sometimes also called “pitch”.

Implementors