如何让 pyplot 图像显示在控制台应用程序上?

发布于 2024-08-09 19:29:20 字数 241 浏览 4 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幽蝶幻影 2024-08-16 19:29:20

您必须调用 show 函数才能实际显示任何内容,例如

matplotlib.pyplot.show()

不幸的是,matplotlib 文档目前似乎已损坏,因此我无法提供链接。

请注意,对于交互式绘图,通常使用 IPython,它对 matplotlib 有特殊支持。

顺便说一句,您可以

import matplotlib.pyplot as plt

使打字变得不那么乏味(这几乎是官方标准方式)。

You have to call the show function to actually display anything, like

matplotlib.pyplot.show()

Unfortunately 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

import matplotlib.pyplot as plt

to make the typing less tedious (this is pretty much the official standard way).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文