摘要:
1. 轮廓 findContours(image, mode, method[, contours[, hierarchy[, offset]]]) mode查找轮廓的模式 cv2.RETR_EXTERNAL = 0,表示指检测外围扩阔 cv2.RETR_LIST = 1,检测的轮廓不建立等级关系, 阅读全文
摘要:
1. 形态学-腐蚀 腐蚀是元素全为1的卷积核 方法: erode(src, kernel[, dst[, anchor[, iterations[, borderType[, borderValue]]]]]) iterations是腐蚀操作的迭代次数,次数越多,腐蚀操作执行的次数越多,腐蚀效果越明 阅读全文
摘要:
1. 全局二值化 参考资料2 cv2.threshold(src, thresh, maxval, type[, dst]),返回值为retval, dst src 是灰度图 thresh 阈值 maxval 最大值,最大值不一定是255 type 操作类型,常见操作类型如下 返回值说明: retv 阅读全文