[ WARN:0@0.488] global loadsave.cpp:244 cv::findDecoder imread_('002.jpg'): can't open/read file: check file path/integrity Traceback (most recent call last): File "C:\Users\sxq\PycharmProjects\pythonProject\main.py", line 162, in <module> ZG_load = ZG('C:/Users/sxq/PycharmProjects/pythonProject/ZGCS/002.bmp',10) File "C:\Users\sxq\PycharmProjects\pythonProject\main.py", line 156, in ZG ZG_load = applycc(img_tensor, torchvision.transforms.RandomErasing(p=0.9, scale=(0.02, 0.33), ratio=(0.3, 3.3), value='random'), type_zg) File "C:\Users\sxq\PycharmProjects\pythonProject\main.py", line 78, in applycc if len(img_if.shape) == 2: AttributeError: 'NoneType' object has no attribute 'shape'
时间: 2023-10-07 08:06:55 浏览: 444
log4j.properties详解与例子
这个错误提示表明 OpenCV 无法打开指定的文件,可能是文件路径不正确或文件已经损坏。你需要检查文件路径是否正确以及文件是否存在。如果文件已经损坏,你可以尝试使用其他软件打开或者重新下载文件。
另外,当 `cv2.imread()` 函数无法打开指定的文件时,它将返回一个 `None` 对象,而 `None` 对象没有 `shape` 属性,因此会导致 `'NoneType' object has no attribute 'shape'` 的错误。你需要在处理图片之前,先检查图片是否成功读取。例如:
```python
img_if = cv2.imread(file_path)
if img_if is not None:
# 处理图片...
else:
print("无法打开文件:", file_path)
```
阅读全文