bilateralFilter

Description

Applies the bilateral filter to an image.

Signature

cv2.bilateralFilter(src, d, sigmaColor, sigmaSpace[, dst[, borderType]]) → dst

Parameters

Explanation

The function applies bilateral filtering to the input image, as described in this paper. The bilateralFilter function can reduce unwanted noise very well while keeping edges fairly sharp. However, it is very slow compared to most filters.

Notes


References

Created with OpenCV 4.4.0