Function blur_advanced

Source
pub fn blur_advanced<I>(
    image: &I,
    parameters: GaussianBlurParameters,
) -> ImageBuffer<<I as GenericImageView>::Pixel, Vec<<<I as GenericImageView>::Pixel as Pixel>::Subpixel>>
where I: GenericImageView, <I as GenericImageView>::Pixel: 'static,
Expand description

Performs a Gaussian blur on the supplied image.

ยงArguments

This method assumes alpha pre-multiplication for images that contain non-constant alpha. This method typically assumes that the input is scene-linear light. If it is not, color distortion may occur.