摘要: 一、函数简介1、threshold—图像简单阈值化处理函数原型:threshold(src, thresh, maxval, type, dst=None)src:图像矩阵thresh:阈值maxVal:像素最大值type:阈值化类型2、adaptiveThresho... 阅读全文
posted @ 2018-01-19 11:36 闪存第一菜鸡 阅读(408) 评论(0) 推荐(0)
摘要: 均值滤波均值滤波函数cv2.blur()[python] view plain copy print?import cv2 img = cv2.imread('01.jpg') blur = cv2.blur(img,(5,5)) cv2.imshow("blu... 阅读全文
posted @ 2018-01-19 10:50 闪存第一菜鸡 阅读(544) 评论(0) 推荐(0)