Python - 使用 matplotlib.pyplot 进行动画

发布于 2024-08-26 23:25:27 字数 49 浏览 2 评论 0原文

如何使用流行的 matplotlib 库创建动画图表?我对 gif 动画特别感兴趣。

How can one create animated diagrams using popular matplotlib library? I am particularly interested in animated gifs.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

凉墨 2024-09-02 23:25:27

matplotlib 文档提供了关于 动画 的完整示例部分(请参阅此scipy 教程也)。然而,大多数都涉及使用各种 GUI 小部件后端。其中有一个“电影演示”,展示了如何生成一系列 PNGS 的 avi。

要制作动画 GIF,我认为您的选择相当有限 。最后我检查了, PIL不支持他们。然而,您可以使用 pyplot 的 savefig 生成一系列 PNG,然后使用调用 ImageMagick 或 mencoder 将它们拼接在一起。

The matplotlib docs provide an entire section of examples on animation (see this scipy tutorial also). Most, however, involve using the various GUI widget backends. There is one in there, "movie demo", that shows how to produce an avi of a series of PNGS.

To produce animated GIFs, I think your options are pretty limited. Last I checked, PIL didn't support them. You could however generate a series of PNGs using pyplot's savefig and then stitch them together using a call to ImageMagick or mencoder.

夜空下最亮的亮点 2024-09-02 23:25:27

2017 年更新

Matplotlib 具有动画模块,在其中您可以找到 ImageMagickFileWriter 类。它被宣传为“基于文件的动画 gif 编写器”。

文档: http://matplotlib.org/api/_as_gen /matplotlib.animation.ImageMagickFileWriter.html#matplotlib.animation.ImageMagickFileWriter

Update in 2017

Matplotlib has the animation module, and in it you find the ImageMagickFileWriter class. It is advertised as "File-based animated gif writer."

Documentation: http://matplotlib.org/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.html#matplotlib.animation.ImageMagickFileWriter

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