pub trait ToLABBitmap {
    // Required method
    fn to_lab(&self) -> Vec<ImgVec<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<ImgVec<f32>>

Implementations on Foreign Types§

source§

impl ToLABBitmap for ImgVec<f32>

source§

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

source§

impl ToLABBitmap for ImgVec<RGBLU>

source§

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

source§

impl ToLABBitmap for ImgVec<RGBAPLU>

source§

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

source§

impl<'a> ToLABBitmap for ImgRef<'a, RGBAPLU>

source§

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

source§

impl<'a> ToLABBitmap for ImgRef<'a, RGBLU>

source§

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

Implementors§