cv2.findContours报错解决

问题引入

原代码:

binary, contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE)

发生了报错,这是因为我们这里返回了binary, contours, hierarchy三个值

这是opencv2里面的写法,在最新版opencv中只返回2个值

修改

contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE) #最新版只返回2个值

成功解决

你可能感兴趣的:(opencv,深度学习,图像处理,目标检测)