Image.blur

Blurs the specified channel. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). The blur method differs from gaussianBlur in that it uses a separable kernel which is faster but mathematically equivalent to the non-separable kernel.

class Image
void
blur

Parameters

radius
Type: double

The radius of the Gaussian in pixels, not counting the center pixel.

sigma
Type: double

The standard deviation of the Laplacian, in pixels.

channel

The channels to blur.

Meta