gpt4 book ai didi

python - 将动画 Matplotlib 图形保存为 GIF 文件会产生不同外观的绘图

转载 作者:行者123 更新时间:2023-12-04 12:28:08 24 4
gpt4 key购买 nike

我使用 FuncAnimation 创建了一个动画情节来自 Matplotlib Animation 类,我想将其保存为 .gif 文件。当我运行脚本时,输出看起来很正常,看起来像这样(动画效果很好):
enter image description here
但是,当我尝试使用 ImageMagick 或 PillowWriter 将动画图另存为 .gif 文件时,该图如下图所示:
enter image description here
线条显然要粗得多,而且总的来说,看起来很糟糕。问题归因于点(紫色和红色圆圈)。因此,情节似乎写在每一帧上(我认为是这种情况)。我可以通过一起摆脱它们来避免这种情况。但我不想这样做,因为很难看到线条。
这是代码:

line, = ax.plot([], [], color = 'blue', lw=1)
line2, = ax.plot([], [], color = 'red', lw=1)
line3, = ax.plot([], [], color = 'purple', lw=1)
def animate(i):
line.set_data(x1[:i], y1[:i])
line2.set_data(x2[:i], y2[:i])
line3.set_data(x3[:i], y3[:i])
point1, = ax.plot(x1[i], y1[i], marker='.', color='blue')
point2, = ax.plot(x2[i], y2[i], marker='.', color='red')
point3, = ax.plot(x3[i], y3[i], marker='.', color='purple')
return line, line2, line3, point1, point2, point3,

ani = animation.FuncAnimation(fig, animate, interval=20, blit=True, repeat=False, frames=1000, save_count=1000)
ani.save("TLI.gif", writer='imagemagick',fps=60)
数组 x1, y1, x2, y2, x3, y3都是包含 x, y 坐标的一维数组。
那么为什么会发生这种情况呢?为什么 .gif 文件在我直接运行时没有显示绘图显示的内容?而且,我该如何解决这个问题?
我也知道这个堆栈溢出问题: matplotlib animation save is not obeying blit=True but it seems to work just fine in plt.show()这意味着问题肯定归咎于 blitting。但是,阅读那个问题的答案并没有解决我的问题,因为那仅指 ax.text与通过 ax.plot 绘制的常规点相反.

最佳答案

看看这是否有效。我没有 Imagemagick,所以我使用 Pillow。
为了防止动画显示堆叠的帧(即点跟踪),技巧是清除轴以刷新每一帧。然后设置xlimylim对于每一帧,并使用 ax.plot(x1[0:i], y1[0:i]... 绘制增量线
要提高图像分辨率,请将输出 dpi 设置为合适的值。我玩弄了它并选择了 300 以获得清晰的线条和轴线/数字。 enter image description here

import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation, PillowWriter
import numpy as np

x1 = np.arange(0, -0.2, -0.002)
y1 = np.arange(0, -0.2, -0.002)
x2 = np.arange(3.9, 3.7, -0.002)
y2 = np.arange(0, 1, 0.01)
x3 = np.arange(0, 1.8, 0.018)
y3 = np.array(x3**2)

fig,ax = plt.subplots()

def animate(i):
ax.clear()
ax.set_xlim(-4,4)
ax.set_ylim(-4,4)
line, = ax.plot(x1[0:i], y1[0:i], color = 'blue', lw=1)
line2, = ax.plot(x2[0:i], y2[0:i], color = 'red', lw=1)
line3, = ax.plot(x3[0:i], y3[0:i], color = 'purple', lw=1)
point1, = ax.plot(x1[i], y1[i], marker='.', color='blue')
point2, = ax.plot(x2[i], y2[i], marker='.', color='red')
point3, = ax.plot(x3[i], y3[i], marker='.', color='purple')
return line, line2, line3, point1, point2, point3,

ani = FuncAnimation(fig, animate, interval=40, blit=True, repeat=True, frames=100)
ani.save("TLI.gif", dpi=300, writer=PillowWriter(fps=25))

关于python - 将动画 Matplotlib 图形保存为 GIF 文件会产生不同外观的绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68960005/

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