摘要: function interpretation cv.imread() open image cv.imwrite() save image img.shape cv.imshow(window_name, image) cv.waitKey(0) waits until a key is pres 阅读全文
posted @ 2021-08-31 10:52 小艾衰 阅读(822) 评论(0) 推荐(0) 编辑
摘要: 1. cv2.blur 均值滤波 3*3的filter_core [[1/9, 1/9, 1/9], [1/9, 1/9, 1/9], [1/9, 1/9, 1/9]] 很容易看出是对感受野全部元素取均值 2.cv.GaussianBlur 高斯滤波 3*3的filter_core [[1 / 16 阅读全文
posted @ 2021-08-31 09:57 小艾衰 阅读(90) 评论(0) 推荐(0) 编辑