image::buffer_

Type Alias Gray16Image

Source
pub(crate) type Gray16Image = ImageBuffer<Luma<u16>, Vec<u16>>;
Expand description

Sendable 16-bit grayscale image buffer

Aliased Type§

struct Gray16Image {
    width: u32,
    height: u32,
    _phantom: PhantomData<Luma<u16>>,
    data: Vec<u16>,
}

Fields§

§width: u32§height: u32§_phantom: PhantomData<Luma<u16>>§data: Vec<u16>