Trait dssim_core::ToLABBitmap
source · 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.
pub trait ToLABBitmap {
// Required method
fn to_lab(&self) -> Vec<ImgVec<f32>>;
}Convert image to L*a*b* planar
It should return 1 (gray) or 3 (color) planes.