摘要: 平时工作中图像处理经常会用到图像最大轮廓及最小外接矩形的获取: 计算过程如下: img = cv2.imread(path) gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) blurred = cv2.blur(gray, (9, 9)) _, thresh 阅读全文
posted @ 2019-11-15 14:55 奥布莱恩 阅读(9962) 评论(0) 推荐(0) 编辑