Python - 使用 matplotlib.pyplot 进行动画
如何使用流行的 matplotlib 库创建动画图表?我对 gif 动画特别感兴趣。
How can one create animated diagrams using popular matplotlib library? I am particularly interested in animated gifs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
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