gblur | 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 |
... |
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
filter2
, makeBrush
x = readImage(system.file("images", "sample.png", package="EBImage"))
display(x)
y = gblur(x, sigma=8)
display(y, title='gblur(x, sigma=8)')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.