medianBlur

Description

Blurs an image using the median filter.

Signature

cv2.medianBlur(src, ksize[, dst]) → dst

Parameters

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.

Notes


References

Created with OpenCV 4.4.0