2021.10.26 打倒日常BUG

编程入门 行业动态 更新时间:2024-10-06 17:24:45

2021.10.26 打倒<a href=https://www.elefans.com/category/jswz/34/1770030.html style=日常BUG"/>

2021.10.26 打倒日常BUG

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

一、

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

解决方法:原代码

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

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

# load imageimg_path = "../5.JPG"assert os.path.exists(img_path), "file: '{}' dose not exist.".format(img_path)img = Image.open(img_path)#addimg = img.convert('RGB')plt.imshow(img)

完美解决:  

更多推荐

2021.10.26 打倒日常BUG

本文发布于:2024-02-27 21:47:04,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1766707.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:日常   BUG

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!