box = np.int0(cv2.cv.BoxPoints(rect)) Traceback (most recent call last): File "D:\opencv车牌识别\main.py", line 47, in <module> box = np.int0(cv2.cv.BoxPoints(rect)) AttributeError: module 'cv2' has no attribute 'cv'
时间: 2024-03-17 21:47:51 浏览: 59
简易python_opencv车牌识别
这个错误是因为在 OpenCV 3.0 版本之后,`cv2.cv` 模块被移除了,所以你需要将代码中的 `cv2.cv` 替换为 `cv2`。具体来说,你可以将代码中的这一行:
```
box = np.int0(cv2.cv.BoxPoints(rect))
```
替换为:
```
box = np.int0(cv2.boxPoints(rect))
```
这样就可以避免这个错误了。
阅读全文