pub trait ToLABBitmap { // Required method fn to_lab(&self) -> Vec<Img<Vec<f32>>>; }
Convert image to L*a*b* planar
It should return 1 (gray) or 3 (color) planes.