Type Alias dssim_core::RGBLU

source ·
pub type RGBLU = RGB<f32>;
Expand description

RGB, but: linear (using sRGB primaries, but not its gamma curve), f32 unit scale 0..1

Aliased Type§

struct RGBLU {
    pub r: f32,
    pub g: f32,
    pub b: f32,
}

Fields§

§r: f32

Red

§g: f32

Green

§b: f32

Blue