翻译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-06-08 10:06:12 浏览: 223
解决Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported
5星 · 资源好评率100%
这个错误通常出现在使用OpenCV进行轮廓发现时。它的含义是当使用OpenCV函数"findContours()"时,该函数只支持CV_8UC1格式的图像,而且在使用非CV_RETR_FLOODFILL模式时只支持CV_32SC1格式的图像。因此,如果你想使用findContours()函数进行轮廓发现,你需要确保你的图像格式符合要求。
阅读全文