bilateralblurring
Bilateralblurring is a hybrid image-processing technique that merges the edge-preserving properties of bilateral filtering with the smoothing behavior of a blur operation. The term is used to describe methods that reduce noise and minor texture while controlling the degree of blur across the image, keeping strong edges intact. The approach builds on bilateral filtering, introduced by Tomasi and Manduchi in 1998, and is commonly implemented in two ways. In the first approach, a bilateral filter is applied to the input image to perform edge-preserving smoothing, and the result is then blurred with a standard Gaussian kernel to obtain a softer overall appearance. In the second approach, the blur is incorporated into the weighting of a bilateral-like kernel, effectively performing a blur within the edge-preserving framework.
Key parameters include the spatial standard deviation (sigma_s) that controls the footprint, the intensity range standard
Limitations include higher computational cost compared with simple blurs, sensitivity to parameter choice, and potential artifacts