ValueError Traceback (most recent call last) <ipython-input-9-30d4162d3ab9> in <module>() ----> 1 contours, hierarchy = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) 2 3 for item in contours: 4 rect = cv2.boundingRect(item) 5 x = rect[0] ValueError: too many values to unpack (expected 2)
时间: 2023-11-22 07:52:39 浏览: 65
关于 Python opencv 使用中的 ValueError: too many values to unpack
这个错误的原因是 `cv2.findContours()` 函数的返回值在 OpenCV 3 和 OpenCV 4 中有所不同。在 OpenCV 4 中, `cv2.findContours()` 返回两个值,分别是轮廓和层级信息。而在 OpenCV 3 中, `cv2.findContours()` 只返回轮廓信息。
因此,如果你使用的是 OpenCV 3,那么你需要将代码修改为:
```python
contours, _ = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
```
如果你使用的是 OpenCV 4,则可以保留原来的代码不变。
阅读全文