cv2.error: OpenCV(4.5.5) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\contours.cpp:197: error: (-210:Unsupported format or combination of formats) [Start]FindContours supports only CV_8UC1 images when mode != CV_RETR_FLOODFILL otherwise supports CV_32SC1 images only in function 'cvStartFindContours_Impl'这是什么错
时间: 2023-11-03 17:57:36 浏览: 288
opencv-python-4.5.5.62.tar.gz
这OpenCV中的错误,通常是由于图像格式不正确或参数设置不正确导致的。该错误是由于在使用cv2.findContours函数时,传递的图像格式不正确而引起的。cv2.findContours函数支持的图像格式为CV_8UC1或CV_32SC1,但是在您的代码中,它似乎是其他格式。您需要确保将图像转换为正确的格式,或者使用不同的参数设置。如果您能提供更多的代码细节和图像信息,我可以帮助您更好地解决这个问题。
阅读全文