Clipping input data to the valid range for imshow with RGB data

Clipping input data to the valid range for imshow with RGB data ,第1张


🤵 Author :Horizon Max

✨ 编程技巧篇:各种 *** 作小结

🎇 机器视觉篇:会变魔术 OpenCV

💥 深度学习篇:简单入门 PyTorch

🏆 神经网络篇:经典网络模型

💻 算法篇:再忙也别忘了 LeetCode


错误提示

使用matplotlib无法显示或者报错

完整报错:

Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers).


解决方案

修改前:

plt.imshow(img)

在需要显示的图像后添加 .astype(np.uint8)

修改后:

plt.imshow(img.astype(np.uint8))

🈺 喜欢的 留个 关注 、 加 点赞 哦 ~



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/870749.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存