BilateralFilter
BilateralFilter[data,σ,μ]
applies a bilateral filter of spatial spread σ and pixel value spread μ to data.
Details and Options
- BilateralFilter is a nonlinear local filter used for edge-preserving smoothing. The amount of smoothing is dependent on the values of σ and μ.
- BilateralFilter replaces each pixel by a weighted average of its neighbors, using normalized Gaussian matrices as weights.
- The data can be any of the following:
-
list arbitrary-rank numerical array tseries temporal data such as TimeSeries, TemporalData, … image arbitrary Image or Image3D object audio an Audio object - When applied to multichannel audio signals and images, the Euclidean distance between channel vectors is computed.
- At the data boundaries, BilateralFilter uses smaller neighborhoods.
- The following options can be given:
-
MaxIterations 1 maximum number of iterations WorkingPrecision MachinePrecision the precision to use - BilateralFilter uses a Gaussian matrix of spatial radius 5/2 σ.
- BilateralFilter always returns an image of a real type.
- For large values of μ, bilateral filtering yields results similar to Gaussian filtering.
Background & Context
- BilateralFilter is a filter for smoothing images to remove local variations typically caused by noise, rough textures, etc. BilateralFilter is often used as a preprocessing step before doing other image analysis operations, such as segmentation. Bilateral filtering can also be used to perform unsharp masking by subtracting the filtered image from the original and then adding the original back in.
- BilateralFilter performs a nonlinear edge-preserving smoothing. The smoothing is done by replacing each pixel with a weighted average of its neighbors, where weights are taken from a normalized Gaussian distribution based on color value similarity. Here, the standard deviation σ and mean μ of the Gaussian distribution are specified as arguments.
- BilateralFilter works with arbitrary grayscale and color images, as well as with 3D and 2D images. When applied to multichannel images, BilateralFilter does not operate channel-by-channel but rather uses the Euclidean distance between channel vectors.
- Other edge-preserving filters include MeanShiftFilter and PeronaMalikFilter. Similar filters that are not edge preserving include MeanFilter and GaussianFilter. For large values of the Gaussian distribution mean, bilateral filtering yields results similar to Gaussian filtering.
Examples
open allclose allBasic Examples (3)
Scope (7)
Data (7)
Bilateral filtering of a list:
Bilateral filtering of a 2D array:
Filter a TimeSeries:
Filter an Audio signal:
Bilateral filtering smooths an image while preserving edges:
Options (6)
MaxIterations (2)
By default, one iteration of bilateral filtering is performed:
Repeatedly filter a TimeSeries:
WorkingPrecision (4)
By default, MachinePrecision is used with integer arrays:
Perform exact computation instead:
By default, the precision of the input is used for real arrays:
With symbolic arrays, exact computation is used:
WorkingPrecision is ignored when filtering images:
Applications (5)
Properties & Relations (2)
Bilateral filtering performs noise reduction while preserving edges:
MeanFilter also reduces noise, but does not preserve edges:
For large values of the Gaussian distribution mean, bilateral filtering yields results similar to Gaussian filtering:
Text
Wolfram Research (2010), BilateralFilter, Wolfram Language function, https://reference.wolfram.com/language/ref/BilateralFilter.html (updated 2016).
CMS
Wolfram Language. 2010. "BilateralFilter." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2016. https://reference.wolfram.com/language/ref/BilateralFilter.html.
APA
Wolfram Language. (2010). BilateralFilter. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/BilateralFilter.html