pub fn equalize_histogram_mut(image: &mut GrayImage)Expand description
An in-place version of equalize_histogram().
This function does the same operation as equalize_histogram() but on the &mut image
passed rather than cloning an &image. This is faster but you lose the
original image.