我有幾個圖像顯示了時間的變化。我想象他們在同一地塊的許多圖像與下面的代碼:如何從matplotlib中的圖像數組製作視頻?
import matplotlib.pyplot as plt
import matplotlib.cm as cm
img = [] # some array of images
fig = plt.figure()
for i in xrange(6):
fig.add_subplot(2, 3, i + 1)
plt.imshow(img[i], cmap=cm.Greys_r)
plt.show()
這是確定的,但我寧願動畫他們得到something like this video。我怎樣才能達到這與python,最好(不一定)與matplotlib