Python代码库OpenCV之08图像过滤blur(含代码)

Python代码库OpenCV之08图像过滤blur(含代码)

图像过滤

图像过滤(Filtering Images)是一种修改图像并提取或突出显示的机制,它将为计算机视觉提供更多有用信息。图像过滤可以增加或删除图像中的噪音、移除背景或特殊对象、提取边缘、模糊或锐化图像。

代码运行

import numpy
import cv2
filename="D:\\pythondev\\dev\\opencv\\img\\tu.png"
#read the flower image and load it into a variable image
image=cv2.imread(filename) 
#kernel value of 3 3x3 matrix neighbourhood is used
noisereduced_version = cv2.medianBlur(image,9)

cv2.imshow("Original",image)
cv2.imshow("Corrected",noisereduced_version)
cv2.waitKey(0)

运行效果

图像过滤blur

更多精彩代码请关注我的专栏

  • selenium & python 源码大全
  • reportlab教程和源码大全
  • python源码大全

你可能感兴趣的:(Python代码库OpenCV之08图像过滤blur(含代码))