报错:error: OpenCV(4.2.0) C:\projects\opencv-python\opencv\modules\imgproc\src\shapedescr.cpp:784: error: (-215:Assertion failed) npoints >= 0 && (depth == CV_32F || depth == CV_32S) in function 'cv::pointSetBoundingRect'
真实错误位置:
是因为OpenCV版本不同,cv2 在3.x版本之后就有这个问题。
要把原来的 contours = contours[0] if imutils.is_cv2() else contours[1]
变成contours = contours[1] if imutils.is_cv3() else contours[0]
opencv3报错:in function cv::pointSetBoundingRect
最新推荐文章于 2023-02-20 17:32:06 发布