medianBlur smoothes an image using a median filter, i.e.
the value of each pixel is replaced by the median value of all the pixels in
its neighborhood.
Arguments
- image
If
k_size=1ork_size=3, an 8-bit (8U), 16-bit (16U) or 32-bit (32F)Imageobject. For any other value ofk_size, an 8-bit (8U)Imageobject.- k_size
The half-size in pixels of the kernel (default: 2).
- target
The location where the results should be stored. It can take 3 values:
- "new":
a new
Imageobject is created and the results are stored inside (the default).- "self":
the results are stored back into
image(faster but destructive).- An
Imageobject: the results are stored in another existing
Imageobject. This is fast and will not replace the content ofimagebut will replace that oftarget. Note that iftargetdoes not have the same dimensions, number of channels, and bit depth asimage, an error may be thrown.
- in_place
Deprecated. Use
targetinstead.
Value
If target="new", the function returns an Image
object. If target="self", the function returns nothing and modifies
image in place. If target is an Image object,
the function returns nothing and modifies that Image object in
place.
Author
Simon Garnier, garnier@njit.edu
Examples
balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
balloon_blur <- medianBlur(balloon, 11)