{% extends "base.html" %} {% block title %} bilateralFilter {% endblock %} {% block description %}

Applies the bilateral filter to an image.

{% endblock %} {% block signature %}
cv2.bilateralFilter(src, d, sigmaColor, sigmaSpace[, dst[, borderType]]) → dst
{% endblock %} {% block parameters %} {% endblock %} {% block 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.

{% endblock %} {% block notes %} {% endblock %} {% block references %} {% endblock %}