module 'cv2' has no attribute 'WAVE_CORRECT_HORIZ'
时间: 2023-11-30 15:43:21 浏览: 100
这个错误通常是因为OpenCV版本不兼容导致的。WAVE_CORRECT_HORIZ是OpenCV 4.0版本中的一个新特性,如果你使用的是旧版本的OpenCV,就会出现这个错误。解决这个问题的方法有两种:
1.升级OpenCV版本到4.0或更高版本。你可以使用以下命令升级OpenCV:
```shell
pip install opencv-python-headless==4.5.3.56
```
2.如果你不想升级OpenCV版本,你可以尝试安装低版本的opencv-contrib-python。你可以使用以下命令安装OpenCV 3.4.10.37:
```shell
pip install opencv-contrib-python==3.4.10.37
```
注意:如果你使用的是conda环境,请使用conda install命令而不是pip install命令。
相关问题
怎么解决AttributeError: module 'torch' has no attribute '_six',我代码中用到了AttributeError: module 'torch' has no attribute '_six'
根据提供的引用内容,出现AttributeError: module 'torch' has no attribute '_six'报错是因为在torch 2.0版本以后中没有‘_six.py’文件。解决这个问题的方法是降低torch的版本或者安装torch的旧版本。具体步骤如下:
1.卸载当前的torch版本
```shell
pip uninstall torch
```
2.安装torch的旧版本,例如1.9.1版本
```shell
pip install torch==1.9.1
```
如果在步骤5中发现有’_six.py’文件,可以点击重启jupyter kernel即可解决。
raise AttributeError(f"module '{__name__}' has no attribute '{name}'") AttributeError: module 'torch' has no attribute '__vision__'
这个错误信息通常出现在使用PyTorch库时,尝试访问一个不存在的属性或模块时。具体来说,`AttributeError: module 'torch' has no attribute '__vision__'` 表示在 `torch` 模块中没有名为 `__vision__` 的属性。
解决这个问题的方法如下:
1. **检查拼写**:确保你访问的属性名是正确的。PyTorch的视觉库通常是通过 `torchvision` 导入的,而不是 `torch.__vision__`。
2. **导入正确的模块**:如果你需要使用PyTorch的视觉库,应该先安装 `torchvision`,然后导入正确的模块。例如:
```python
import torch
import torchvision
# 使用 torchvision 中的某个模块
model = torchvision.models.resnet18()
```
3. **更新PyTorch和torchvision**:确保你的PyTorch和torchvision库是最新版本。你可以使用以下命令更新:
```bash
pip install --upgrade torch torchvision
```
4. **检查代码**:有时候,代码中可能存在其他问题,导致错误信息不准确。仔细检查代码,确保没有其他错误。
通过以上步骤,你应该能够解决 `AttributeError: module 'torch' has no attribute '__vision__'` 这个错误。
阅读全文