OpenCV(4.1.2) error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'

OpenCV(4.1.2) error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'

我在 运行 这行代码时收到此错误:

img = cv2.resize(img, (224,224)) 

OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\imgproc\src\resize.cpp:3720: error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'

您的 img 变量为空,您可能没有正确加载图像。加载图像后尝试打印 img.shape。然后看看你指定的路径,它可能有问题。 (您拼写错误或该目录中不存在该文件)

frame = cv2.resize(frame,(224,224),fx=0,fy=0, interpolation = cv2.INTER_CUBIC)

我已经将我的代码更改为这个并且它适用于我。