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

Blurs an image using the median filter.

{% endblock %} {% block signature %}
cv2.medianBlur(src, ksize[, dst]) → dst
{% endblock %} {% block parameters %} {% endblock %} {% block explanation %}

The function smoothes an image using the median filter with the ksize x ksize aperture. Each channel of a multi-channel image is processed independently. In-place operation is supported.

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