cv2.error: OpenCV(4.5.5) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\resize.cpp:4052: error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'
时间: 2023-06-26 14:08:26 浏览: 142
OpenCV4.5.5+CVContrib4.5.5编译好的文件
这个错误通常意味着你在调用 `cv2.resize()` 函数时传入了一个空的 `ndarray`。请检查你的代码,确保你传入的图像数组不为空,并且其尺寸是正确的。你可以使用以下代码来检查图像数组是否为空:
```python
import cv2
img = cv2.imread('image.jpg')
if img is None:
print('Error: Could not open or find the image.')
else:
# Perform image processing operations
```
如果你确定输入图像不为空,可能是其他问题导致的。请提供更多细节,以便我能够更好地帮助你解决问题。
阅读全文