Trait dssim_core::ToLABBitmap[][src]

pub trait ToLABBitmap {
    fn to_lab(&self) -> Vec<ImgVec<f32>>;
}

Convert image to L*a*b* planar

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

Required methods

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

Loading content...

Implementations on Foreign Types

impl ToLABBitmap for ImgVec<RGBAPLU>[src]

impl ToLABBitmap for ImgVec<RGBLU>[src]

impl ToLABBitmap for ImgVec<f32>[src]

impl<'a> ToLABBitmap for ImgRef<'a, RGBAPLU>[src]

impl<'a> ToLABBitmap for ImgRef<'a, RGBLU>[src]

Loading content...

Implementors

Loading content...