gpt4 book ai didi

matplotlib - matplotlib动画可以输出向量序列吗?

转载 作者:行者123 更新时间:2023-12-02 17:25:18 25 4
gpt4 key购买 nike

是否可以通过matplotlib以矢量格式输出文件序列animation module

例如:

...
anim = animation.FuncAnimation(...)
anim.save('animation.mp4', fps=30, extra_args=['-vcodec', 'libx264'])

输出 mp4 电影(通过 ffmpeg)。

我可以指示动画类输出矢量文件序列吗?

最佳答案

要查看您的系统上可用的编写器,请使用:

import matplotlib.animation as animation
print animation.writers.list()

您可能需要为您想要的内容编写一个新的writer

编辑

Matplotlib 动画模块中的“FileWriters”似乎仅支持光栅输出。对于 FFMpegFileWriter() 这在文档中是清楚的,而对于 FileMovieWriter() 如果我们使用不支持的格式启动此类,则可以派生它:

plt.rcParams['animation.frame_format'] = 'svg'

在这种情况下,打印支持的格式时会出现错误:

Unrecognized animation.frame_format string "'svg'": valid strings are ['rgba', 'tiff', 'jpeg', 'png', 'raw']

所以 Matplotlib 动画模块似乎只适用于栅格数据。

关于matplotlib - matplotlib动画可以输出向量序列吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16842536/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com