如何让 pyplot 图像显示在控制台应用程序上?
我正在尝试使用 matplotlib.pyplot.imshow() 创建图像。但是,当我从控制台运行该程序时,它没有显示任何内容?
这是代码:
import matplotlib.pyplot
myimage = gen_image()
matplotlib.pyplot.gray()
matplotlib.pyplot.imshow(results)
但这没有显示任何内容。
I'm trying to create an image using matplotlib.pyplot.imshow()
. However, when I run the program from my console, it doesn't display anything?
This is the code:
import matplotlib.pyplot
myimage = gen_image()
matplotlib.pyplot.gray()
matplotlib.pyplot.imshow(results)
But this shows nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须调用
show
函数才能实际显示任何内容,例如不幸的是,matplotlib 文档目前似乎已损坏,因此我无法提供链接。
请注意,对于交互式绘图,通常使用 IPython,它对 matplotlib 有特殊支持。
顺便说一句,您可以
使打字变得不那么乏味(这几乎是官方标准方式)。
You have to call the
show
function to actually display anything, likeUnfortunately the matplotlib documentation seems to be currently broken, so I can't provide a link.
Note that for interactive plotting one typically uses IPython, which has special support for matplotlib.
By the way, you can do
to make the typing less tedious (this is pretty much the official standard way).