自学python-opencv(6)边缘检测
摘要:
import cv2import numpy #Canny边缘检测def edge_demo(image): #sigmaX:X方向方差,X方向方差,控制权重。y与x是一致的 blurred=cv2.GaussianBlur(image,(3,3),0) gray=cv2.cvtColor(blur 阅读全文
posted @ 2020-09-27 13:18 451xxx 阅读(80) 评论(0) 推荐(0) 编辑