pub type RgbF16ImageStore<'a> = ImageStore<'a, f16, 3>;Available on crate feature
nightly_f16 only.Aliased Type§
struct RgbF16ImageStore<'a> {
pub buffer: Cow<'a, [f16]>,
pub channels: usize,
pub width: usize,
pub height: usize,
pub stride: usize,
pub bit_depth: usize,
}Fields§
§buffer: Cow<'a, [f16]>§channels: usizeChannels in the image
width: usizeImage width
height: usizeImage height
stride: usizeImage stride, if stride is zero then it considered to be width * N
bit_depth: usizeThis is private field, currently used only for u16, will be automatically passed from upper func