解决cv2.error: OpenCV(4.0.0) ...error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'

报错:

  File "D:\curiosity\mineral classification1\src\猫狗识别\dataset.py", line 22, in load_train
    image = cv2.resize(image, (image_size, image_size),0,0, cv2.INTER_LINEAR)
cv2.error: OpenCV(4.0.0) C:\projects\opencv-python\opencv\modules\imgproc\src\resize.cpp:3784: error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'

自查是原始图片数据中有.gif、.png、.jepg格式的图片,将其统一重命名成.jpg格式后报错。

解决方法:.png和.jepg格式图片可以粗暴的重命名成.jpg,.gif格式不可以,只能另转格式或者删除。

你可能感兴趣的:(入门)