我不知道如何在 FuncAnimation 情节(使用 blit)上获得动画标题。基于http://jakevdp.github.io/blog/2012/08/18/matplotlib-animation-tutorial/和Python/Matplotlib - Quickly Updating Text on Axes,我构建了一个动画,但文本部分刚刚获胜没有动画。简化示例:
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import numpy as np
vls = np.linspace(0,2*2*np.pi,100)
fig=plt.figure()
img, = plt.plot(np.sin(vls))
ax = plt.axes()
ax.set_xlim([0,2*2*np.pi])
#ttl = ax.set_title('',animated=True)
ttl = ax.text(.5, 1.005, '', transform = ax.transAxes)
def init():
ttl.set_text('')
img.set_data([0],[0])
return img, ttl
def func(n):
ttl.set_text(str(n))
img.set_data(vls,np.sin(vls+.02*n*2*np.pi))
return img, ttl
ani = animation.FuncAnimation(fig,func,init_func=init,frames=50,interval=30,blit=True)
plt.show()
如果blit=True
被删除,文本会显示出来,但速度会变慢。它似乎因plt.title
,ax.set_title
和 而失败ax.text
。
编辑:我发现了为什么第一个链接中的第二个示例有效;文字在img
零件内。如果你把上面1.005
的 a .99
,你会明白我的意思。可能有一种方法可以用边界框来做到这一点,不知何故......