Method: Magick::Image#gaussian_blur

Defined in:
ext/RMagick/rmimage.cpp

#gaussian_blur(radius = 0.0, sigma = 1.0) ⇒ Magick::Image

Blur the image.

Returns a new image.

Parameters:

  • radius (Numeric) (defaults to: 0.0)

    The radius of the Gaussian operator.

  • sigma (Numeric) (defaults to: 1.0)

    The sigma (standard deviation) of the Gaussian operator.

Returns:



7685
7686
7687
7688
7689
# File 'ext/RMagick/rmimage.cpp', line 7685

VALUE
Image_gaussian_blur(int argc, VALUE *argv, VALUE self)
{
    return effect_image(self, argc, argv, GVL_FUNC(GaussianBlurImage));
}