使用 OpenCV 函数高斯模糊对图像进行模糊处理


在此程序中,将使用 OpenCV 函数高斯模糊对图像进行模糊处理。高斯模糊是使用高斯函数对图像进行模糊处理的过程。它在图形软件中广泛用于去除图像噪音并减少细节。

算法

Step 1: Import cv2.
Step 2: Read the original image.
Step 3: Apply gaussian blur function. Pass the image and the kernel size as parameter.
Step 4: Display the image.

原图

示例代码

import cv2
image = cv2.imread("testimage.jpg")
Gaussian = cv2.GaussianBlur(image, (7,7), 0)
cv2.imshow("Gaussian Blur", Gaussian)

输出

高斯模糊:

更新于: 2021-3-17

446 次浏览

开启你的职业生涯

完成课程即可获得认证

开始
广告