[][src]Function imageproc::filter::gaussian_blur_f32

pub fn gaussian_blur_f32<P>(image: &Image<P>, sigma: f32) -> Image<P> where
    P: Pixel + 'static,
    <P as Pixel>::Subpixel: ValueInto<f32> + Clamp<f32>, 

Blurs an image using a Gaussian of standard deviation sigma. The kernel used has type f32 and all intermediate calculations are performed at this type.

Panics

Panics if sigma <= 0.0.