AttributeError: module 'cv2' has no attribute 'calcGLCMDescriptors'
时间: 2023-06-21 13:07:32 浏览: 90
这个错误通常是由于使用了旧版本的OpenCV导致的。在旧版本的OpenCV中,calcGLCMDescriptors()函数不可用。请尝试更新您的OpenCV版本,或者使用其他可用的GLCM库来解决这个问题。你可以尝试安装最新版本的OpenCV,可以通过以下命令使用pip进行安装:
```
pip install opencv-python
```
如果你已经安装了最新版的OpenCV,但问题仍然存在,则可能需要检查您的代码是否正确导入了OpenCV库,并且是否正确地调用了calcGLCMDescriptors()函数。
相关问题
AttributeError: module 'imageio' has no attribute 'cv2'
这个错误提示是因为你在使用 imageio 库时,调用了其中的 cv2 模块,但是 imageio 库并没有 cv2 模块。可能是你的代码中有类似于下面这样的语句:
```python
import imageio
imageio.cv2.some_function()
```
正确的做法是使用 OpenCV 库中的 cv2 模块来处理图像,而不是使用 imageio 库。你可以尝试将代码中的 imageio.cv2 替换为 cv2,或者直接使用 OpenCV 库中的 cv2 模块。
AttributeError: module cv2.cv2 has no attribute face
引用\[1\]:根据你提供的信息,报错信息为"AttributeError: module 'cv2.cv2' has no attribute 'face'"。这个错误通常是由于导入的cv2模块中没有名为'face'的属性导致的。你提到已经安装了opencv-contrib-python模块,但仍然报错。可能的原因是opencv的安装顺序不正确。为了解决这个问题,你可以尝试重新安装opencv-contrib-python模块。首先,使用以下命令卸载opencv-python和opencv-contrib-python模块:pip uninstall opencv-python和pip uninstall opencv-contrib-python。然后,再次使用pip install opencv-contrib-python命令重新安装opencv-contrib-python模块。这样应该能够解决你的问题。引用\[2\]和\[3\]提供了两种解决办法,其中一种是指定使用特定版本的OpenCV,另一种是使用新版本的OpenCV的函数。你可以根据自己的情况选择适合的解决办法来解决这个问题。
#### 引用[.reference_title]
- *1* [Python 使用cv2模块 进入视觉识别的报错,报错信息为AttributeError: module ‘cv2.cv2‘ has no attribute...](https://blog.csdn.net/Deng872347348/article/details/127110593)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* *3* [AttributeError: module ‘cv2‘ has no attribute ‘xfeatures2d](https://blog.csdn.net/weixin_40809724/article/details/127265000)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文