Trait ToLABBitmap

Source
pub trait ToLABBitmap {
    // Required method
    fn to_lab(&self) -> Vec<Img<Vec<f32>>>;
}
Expand description

Convert image to L*a*b* planar

It should return 1 (gray) or 3 (color) planes.

Required Methods§

Source

fn to_lab(&self) -> Vec<Img<Vec<f32>>>

Implementations on Foreign Types§

Source§

impl ToLABBitmap for Img<Vec<f32>>

Source§

fn to_lab(&self) -> Vec<Img<Vec<f32>>>

Source§

impl ToLABBitmap for Img<Vec<Rgb<f32>>>

Source§

fn to_lab(&self) -> Vec<Img<Vec<f32>>>

Source§

impl ToLABBitmap for Img<Vec<Rgba<f32>>>

Source§

fn to_lab(&self) -> Vec<Img<Vec<f32>>>

Source§

impl<'a> ToLABBitmap for Img<&'a [Rgb<f32>]>

Source§

fn to_lab(&self) -> Vec<Img<Vec<f32>>>

Source§

impl<'a> ToLABBitmap for Img<&'a [Rgba<f32>]>

Source§

fn to_lab(&self) -> Vec<Img<Vec<f32>>>

Implementors§