Struct rawloader::RGBImage [] [src]

pub struct RGBImage {
    pub width: usize,
    pub height: usize,
    pub data: Vec<f32>,
}

A RawImage processed into a full RGB image with levels and gamma

The data is a Vec width width*height*3 elements, where each element is a value between 0 and 1 with the intensity of the color channel

Fields

Trait Implementations

impl Debug for RGBImage
[src]

Formats the value using the given formatter.

impl Clone for RGBImage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more