如何在matplotlib中通过func停止FuncAnimation?

时间:2018-02-01 13:42:09

标签: python animation matplotlib

我写了一个像这样的matplotlib动画程序:

def animate(frame):
    observation = env.render()
    action = RL.choose_action(str(observation)) # TODO
    action = [random.randint(0, 4) for i in range(ROBOT_NUM)] # TO BE DELETE TODO
    env.step(action)
    observation_ = env.render()
    reward = env.reward
    RL.learn(str(observation), action, reward, str(observation_))  # TODO
    for i in range(TARGET_NUM):
        patchs_target[i].center = (env.targets[i].x, env.targets[i].y)
    for i in range(ROBOT_NUM):
        patchs[i].center = (env.robots[i].x, env.robots[i].y)
        patchs_inner[i].center = (env.robots[i].x, env.robots[i].y)
    return patchs + patchs_inner + patchs_target

.....

anim = animation.FuncAnimation(fig, animate, init_func=init,frames=1, interval=UPDATE_INTERVAL, blit=True)

现在我想通过判断animation.FuncAnimation函数中的条件来停止animate。比如if reward < 10然后停止animation.FuncAnimation,但我不知道如何处理它 或者,是否有任何方法可以按条件停止animation.FuncAnimation?不是通过动画时代。

1 个答案:

答案 0 :(得分:2)

两个选项:

(1)使用发电机

为了动态引导动画,您可以使用生成器,只要满足某些条件,就会在while循环中生成新值。这看起来如下:

reward = 0

def gen():
    global reward
    i = 0
    while reward <= 10:
        i += 1
        yield i

def animate(i):
    global reward
    reward = update(reward)
    some_object[i] = func(reward)
    return some_object

anim = animation.FuncAnimation(fig, animate, frames=gen, repeat = False)

(2)使用event_source.stop()

的班级

或者,您可以使用anim.event_source.stop()停止动画。为了能够访问动画函数内的动画,可以使用类并使动画成为类变量。

class Anim():
    def __init__(self, fig, **kw):
        self.reward=0
        self.ani = animation.FuncAnimation(fig, self.animate, 
                                           frames=100, repeat = False) 

    def animate(self,i):
        reward = update(reward)
        some_object[i] = func(reward)
        if self.reward > 10:
            self.ani.event_source.stop()
        return some_object

请注意,这两个代码都未经过测试,因为该问题未提供测试用例。