Python 3.6 - 从实时情节中保存电影 - 电影中的图形窗口向上移动

时间:2016-10-11 12:39:55

标签: python plot save real-time movie

我想从实时情节创建一部电影,在那里我不断更新情节中的数据。 由于原始代码太长而且复杂,我用更简单的代码替换原始数据,以专注于保存电影的问题。

1。)显示实时情节正常

2。)使用下面的代码保存电影(没有显示实时图)也可以正常工作

3。)!!!然而,同时显示实时绘图和保存电影会产生一部电影,电影中的数字窗口正在慢慢向上移动!!!

这个问题可能是什么原因???

电影截图链接: https://i.stack.imgur.com/1xWcM.jpg

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as manimation

# we generate some synthetic data.
# we will make a list of X, Y lists.
# the original code use for generating data is too long and complex to show here
frames = []
frameNumber = 240  # we generate 240 different frames

for i in range(0, frameNumber):
    xData = np.linspace(0, 2 * np.pi)
    yData = np.sin(xData - i * 2.0 * np.pi / frameNumber)
    frames.append([xData, yData])
    print('frameNumber: ', i)

# now we put them together to make a movie! let's set up the movie writer
framerate = 60                           # 24 frames per second
# FFMpegWriter = manimation.writers['avconv']
FFMpegWriter = manimation.writers['ffmpeg']
metadata = dict(title='Wave Data', artist='Isaac Newton', comment='')
writer = FFMpegWriter(fps=framerate, metadata=metadata)

# figure setup
fig,ax = plt.subplots()
firstFrameX, firstFrameY = frames[0]
l, = ax.plot(firstFrameX, firstFrameY, '-')

plt.ylabel(r'$x$ axis')
plt.xlabel(r'$y$ axis')
plt.xlim(0, 2 * np.pi)
plt.title(r'$\lambda = 2 \pi$')

# --- without displaying ---> comment next 2 lines
fig.show()
fig.canvas.draw()
# ------------------------------------------------

# let's write to the file!
with writer.saving(fig, "anim.mp4", 100):
    for i in range(frameNumber):
        x, y = frames[i]
        l.set_data(x, y)

        # --- without displaying ---> comment next 4 lines
        ax.draw_artist(ax.patch)
        ax.draw_artist(l)
        fig.canvas.update()
        fig.canvas.flush_events()
        # ------------------------------------------------
        writer.grab_frame()

1 个答案:

答案 0 :(得分:0)

我在Python 2.7中使用matplotlib.animation有类似的问题。

对于在新控制台中的第一次运行,我的电影会很好,但如果我再次运行该脚本,生成的电影将向上移动,就像在屏幕截图中一样。

重新启动控制台为我解决了这个问题,但不是很方便。

关闭图,通过在我的脚本末尾添加plt.close(图),解决了我的问题。

然而,我仍然不明白究竟是什么导致了这一点。