Type Alias rerun::external::image::Rgb32FImage

pub type Rgb32FImage = ImageBuffer<Rgb<f32>, Vec<f32>>;
Expand description

An image buffer for 32-bit float RGB pixels, where the backing container is a flattened vector of floats.

Aliased Type§

struct Rgb32FImage {
    width: u32,
    height: u32,
    _phantom: PhantomData<Rgb<f32>>,
    data: Vec<f32>,
}

Fields§

§width: u32§height: u32§_phantom: PhantomData<Rgb<f32>>§data: Vec<f32>