D:\python3.8\python.exe D:/pythonProject1/bishe1.py 俯视or侧视:俯视 D:\python3.8\lib\site-packages\skimage\io\_plugins\matplotlib_plugin.py:149: UserWarning: Low image data range; displaying image with stretched contrast. lo, hi, cmap = _get_display_range(image) Traceback (most recent call last): File "D:/pythonProject1/bishe1.py", line 65, in <module> contours,h=cv.findContours(edge,cv.RETR_TREE,cv.CHAIN_APPROX_NONE) cv2.error: OpenCV(4.6.0) 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' 进程已结束,退出代码1
时间: 2023-08-29 15:04:36 浏览: 179
基于spring boot+vue餐厅点餐管理系统java毕业设计源代码+数据库.rar
根据你的描述,这是一段 Python 代码,使用了 OpenCV 库中的 findContours 函数进行轮廓查找。但是在调用 findContours 函数时,出现了错误。错误信息显示 findContours 函数的参数有误,可能是由于输入的图像格式不正确导致的。建议检查一下输入的图像是否为灰度图像,以及是否使用了正确的数据类型。在调用 findContours 函数时,可以使用 cv2.cvtColor() 函数将彩色图像转换为灰度图像,然后使用 astype() 函数将数据类型转换为 uint8,即可避免这个错误。代码如下:
```
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
gray = gray.astype('uint8')
contours, hierarchy = cv2.findContours(gray, cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE)
```
其中,cv2.COLOR_BGR2GRAY 是将彩色图像转换为灰度图像的参数。astype() 函数用于将数据类型转换为 uint8。
阅读全文