出现这个问题怎么办 cv2.error: OpenCV(3.4.5) /io/opencv/modules/imgproc/src/resize.cpp:3784: error: (-215:Assertion failed) !ssize.empty() in function 'resize'
时间: 2023-08-14 19:42:38 浏览: 98
show.rar_OpenCV_C/C++_
这个错误通常是由于输入的图像尺寸为空引起的。你需要检查代码中关于输入图像的部分,确保输入图像的尺寸是正确的,不为空。你可以使用`cv2.imshow()`在代码不同部分输出图像尺寸,以便定位问题所在。或者,你可以在代码中添加以下行,以检查图像尺寸是否为空:
```
if img is None or img.size == 0:
print("Image not found or has no size")
```
这将检查图像是否为空或大小是否为零。如果是,你需要重新检查代码中有关图像输入的部分。
阅读全文