Type Alias image::buffer_::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>