| gblur {EBImage} | R Documentation |
Filters an image with a low-pass Gaussian filter.
gblur(x, sigma, radius = 2 * ceiling(3 * sigma) + 1)
x |
An |
sigma |
A numeric denoting the standard deviation of the Gaussian filter used for blurring. |
radius |
The radius of the filter in pixels. Default is |
The Gaussian filter is created with the function makeBrush.
An Image object or an array, containing the filtered version
of x.
Oleg Sklyar, osklyar@ebi.ac.uk, 2005-2007
x = readImage(system.file("images", "lena.png", package="EBImage"))
if (interactive()) display(x)
y = gblur(x, sigma=8)
if (interactive()) display(y, title='gblur(x, sigma=8)')