pub fn sharpen_gaussian(image: &GrayImage, sigma: f32, amount: f32) -> GrayImageExpand description
Sharpens a grayscale image using a Gaussian as a low-pass filter.
sigmais the standard deviation of the Gaussian filter used.amountcontrols the level of sharpening.output = input + amount * edges.