bilateralFilter: Edge-Preserving Noise Reduction with a Bilateral Filter
Description
bilateralFilter
applies the bilateral filter to an image.
This filter can reduce unwanted noise very well while keeping edges fairly
sharp. However, it is very slow compared to most filters.
Usage
bilateralFilter(image, d = 5, sigma_color = 25, sigma_space = 25)
Arguments
d
The diameter in pixels of the filter neighborhood (default: 5).
sigma_color
The filter standard deviation in the color space
(see Note; default: 25).
sigma_space
The filter standard deviation in the coordinate space
(see Note; default: 25).
Value
image An Image
object.