python - Matplotlib FuncAnimation 慢

标签 python animation matplotlib

我使用 matplotlib 的 FuncAnimation 创建了表面绑定(bind)过程的简单动画。然而,结果非常缓慢。我怀疑这是因为我在每一帧重新绘制所有元素,但我还没有找到解决方法。任何帮助表示赞赏。

import matplotlib
matplotlib.use('TKAgg')      # import proper graphics back-end for Mac OS X


import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation
from matplotlib.collections import PatchCollection
from random import *

nx = 20     # x size of lattice
ny = 20     # y size of lattice

pAds = 0.01     # adsorption probability per time step
pDes = 0.0075   # desorption probability per time step

tMax = 500     # number of time steps

surface = np.zeros((nx,ny))              # create surface
xc = [0]
yc = [0]


# initialization and time step of simulation

def init():
    # initialize an empty list of circles
    patches = []            # empty array to hold drawable objects
    for x in range(0,nx):
        for y in range(0,ny):
            if(surface[x][y] == 0):
                patches.append(ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='w')))
    lines, = ax_covr.plot([],[])
    patches.append(lines)
    return patches

def animate(i): 
    patches = []            # empty array of circles to be drawn
    for x in range(0,nx):
        for y in range(0,ny):
            if(surface[x][y] == 0):
                if(random() < pAds):
                    surface[x][y] = 1
                    patches.append(ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='b')))
                else:
                    patches.append(ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='w')))
            else:
                if(random()<pDes):
                    surface[x][y] = 0
                    patches.append(ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='w')))
                else:
                    patches.append(ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='b')))
    coverage = np.sum(surface)/(nx*ny)
    xc.append(i)
    yc.append(coverage)
    lines, = ax_covr.plot(xc,yc,'ro',ms=2,lw=0)
    patches.append(lines)
    return patches

# set up figure and animate


fig = plt.figure()
ax_surf = plt.subplot2grid((1, 2), (0, 0))
ax_covr = plt.subplot2grid((1, 2), (0, 1))
ax_surf.set_xlim(0,nx)
ax_surf.set_ylim(0,ny)
ax_covr.set_xlim(0,tMax)
ax_covr.set_ylim(0,1)

ax_surf.set_aspect(1)
ax_surf.axis('off')

ax_covr.set_aspect(tMax)

ax_surf.hold(False)

anim = animation.FuncAnimation(fig, animate, init_func=init, frames=tMax, interval=0, blit=True,repeat=False)
plt.show()

最佳答案

使用以前的 init/animate 调用的 patches 而不是每次都创建新的。

以下是修改后的代码。

patches = []

def init():
    global patches
    if patches:
        # prevent the second call of the init()
        return patches
    # initialize an empty list of circles
    for x in range(nx):
        for y in range(ny):
            if(surface[x][y] == 0):
                patches.append(ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='w')))
    lines, = ax_covr.plot([],[])
    patches.append(lines)
    return patches

def animate(i): 
    global patches
    idx = 0
    for x in range(nx):
        for y in range(ny):
            if surface[x][y] == 0:
                if random() < pAds:
                    surface[x][y] = 1
                    patches[idx] = ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='b'))
            else:
                if(random()<pDes):
                    surface[x][y] = 0
                    patches[idx] = ax_surf.add_patch(plt.Circle((x+0.5,y+0.5),0.45,color='w'))
            idx += 1
    coverage = np.sum(surface)/(nx*ny)
    xc.append(i)
    yc.append(coverage)
    lines, = ax_covr.plot(xc,yc,'ro',ms=2,lw=0)
    patches[idx] = lines
    return patches

注意:使用全局变量以尽量减少修改。

关于python - Matplotlib FuncAnimation 慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20016463/

相关文章:

python - 如何从 matplotlib 中删除灰色边框

Android:如何创建 Google Plus 登录动画?

多处理期间的 Python stdout

python - 我如何使用带有 python 的 cron 来使用谷歌驱动器?

python - 列出为文件,然后将该文件作为python中的列表读取

jquery - 显示 jQuery 中的隐藏元素

javascript - 悬停在按钮/元素上时如何使它们具有动画效果?

python - 在子图顶部画线以呈现缩放效果

python - matplotlib 和 seaborn 热图在 Jupyter 中与 savefig 的渲染方式不同(标签被切断)

python - 识别具有多个馆藏的重复项