Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 matplotlib 动画(例如其中一个),我想将它导出到叠加了几个帧的 SVG 图像(例如,在本文中,第 5 页的图 2)。目标是获得尽可能清楚地描述运动的图像。
实现这一目标的最佳方法是什么?
不幸的是,我目前无法查看 .pdf,但我解决此问题的方法是在 matplotlib 的同一图中使用 绘制动画的每个“帧” plot(x,y),然后使用savefig('image.svg')(如果 .svg 是一种可以以这种方式从 matplotlib 中保存)。
plot(x,y)
savefig('image.svg')
或者,我会在plot调用中添加另一个参数,根据帧号为绘图着色不同的颜色。
plot