Blurring image using OpenCV

Standard

Blurring in OpenCV is achieved by using a sliding window on the image. This sliding window is essentially a matrix and is often called a kernel. You do not have to worry about implementing that, OpenCV does that. It has support for Gaussian blur and others.

C++ code OpenCV blur image:

Python code to blur image opencv

Leave a Reply