logo
pub trait ToLABBitmap {
    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

Implementations on Foreign Types

Implementors