pub fn gaussian_blur_f32<P>(image: &Image<P>, sigma: f32) -> Image<P>
Expand description
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
.