Performs edge-preserving bilateral filtering on an image.
Algorithm: Bilateral filtering as described in Tomasi & Manduchi, "Bilateral Filtering for Gray and Color Images", ICCV 1998. The underlying implementation is in the internal function __bilateral__.
Inputs:
Note that for the range Gaussian, the variance is given, and for spatial Gaussian, standard deviation is given.
Name-Value Pair Arguments:
"NeighborhoodSize": Window size (odd scalar). Default: 2 * ceil (2 * spatial_sigma) + 1.
"Padding": Border handling. Options:
"replicate" (default)
"symmetric"
"circular"
Output:
See also: imgaussfilt.
Package: image