当前位置:   article > 正文

2021.10.26 打倒日常BUG_assert os.path.exists(img_path), "file: '{}' dose

assert os.path.exists(img_path), "file: '{}' dose not exist.".format(img_pat

ALEXNET训练自己数据集,测试阶段出现的BUG:

一、

 错误原因:测试要求用RGB图3通道,而我用的是灰度图

解决方法:原代码

  1. # load image
  2. img_path = "../5.JPG"
  3. assert os.path.exists(img_path), "file: '{}' dose not exist.".format(img_path)
  4. img = Image.open(img_path)
  5. plt.imshow(img)

 改过后的代码,加一句img = img.covert('RGB')

  1. # load image
  2. img_path = "../5.JPG"
  3. assert os.path.exists(img_path), "file: '{}' dose not exist.".format(img_path)
  4. img = Image.open(img_path)
  5. #add
  6. img = img.convert('RGB')
  7. plt.imshow(img)

完美解决:  

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/92627
推荐阅读
相关标签
  

闽ICP备14008679号