0


VScode中运行python时,使用matplotlib的plt.imshow()不显示图像 的参考解决方法

写在前面

自己的测试环境 Ubuntu20.04

一、问题描述

自己使用VScode中运行python程序时,python程序中调用

matplotlib

plt.imshow()

不能显示图像的情况。

二、解决方法

出现这种情况的解决方法很简单,在最后一个

plt.imshow(image)

的后面增加一个

plt.show()

即可解决问题。

plt.imshow(image)
plt.show()

其他解决方法

[1] 灵犀智库. code9:VScode的python使用matplotlib的plt.show()不显示图形 [EB/OL]. https://zhuanlan.zhihu.com/p/362582958, 2021-04-16/2024-01-18.


本文转载自: https://blog.csdn.net/qq_39779233/article/details/135677547
版权归原作者 wongHome 所有, 如有侵权,请联系我们删除。

“VScode中运行python时,使用matplotlib的plt.imshow()不显示图像 的参考解决方法”的评论:

还没有评论