usecrate::backends::*;/// Read and return the whole image pixels rgb8 array
pubfnfull(f:&Path)->Result<Vec<u8>>{// Init image, then convert it into rgb and finally to LAB
Ok(image::ImageReader::open(f)?.with_guessed_format()?.decode()?.into_rgb8().into_raw())}