Gaussian Blur

Gaussian blur smooths an image by convolving it with a Gaussian kernel, reducing noise and detail.

Example Code

import cv2


def gaussian_blur(img):
return cv2.GaussianBlur(img, (5,5), 0)
← Back to Gallery
Before After