Low-pass Gaussian filter
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 |
... |
Arguments passed to |
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", "sample.png", package="EBImage")) display(x) y = gblur(x, sigma=8) display(y, title='gblur(x, sigma=8)')
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.