python opencv 调用 cv2.boundingRect(contour)方法异常 cv::pointSetBoundingRect

错误写法:我原来是这样写的 contours = contours[0] if imutils.is_cv2() else contours[1]

 

可能是OpenCV版本不同,你关注的教程可能是在OpenCV 4发布之前发布的。

OpenCV 3改为cv2.findContours(...)返回image, contours, hierarchy,

而OpenCV 2cv2.findContours(...)和OpenCV 4则cv2.findContours(...)返回contours, hierarchy。

因此,在OpenCV 4之前,如果你使用OpenCV 2它应该是contours[0]其他的,这是正确的contours[1]。如果您仍想拥有此“兼容性”,则可以更改为:

contours = contours[1] if imutils.is_cv3() else contours[0]

你可能感兴趣的:(opencv-python,python)