pub fn blur_advanced<I: GenericImageView>(
image: &I,
parameters: GaussianBlurParameters,
) -> ImageBuffer<I::Pixel, Vec<<I::Pixel as Pixel>::Subpixel>>where
I::Pixel: 'static,
Expand description
Performs a Gaussian blur on the supplied image.
ยงArguments
parameters
- see GaussianBlurParameters for more info.
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.