Skip to content

Instantly share code, notes, and snippets.

@SubhadityaMukherjee
Created February 13, 2020 06:47
Show Gist options
  • Save SubhadityaMukherjee/00bdc256dfeea84204ffa96aee866b3d to your computer and use it in GitHub Desktop.
Save SubhadityaMukherjee/00bdc256dfeea84204ffa96aee866b3d to your computer and use it in GitHub Desktop.
anim
#%%capture
fig = plt.figure(figsize=(8,8))
plt.axis("off")
ims = [[plt.imshow(np.transpose(i,(1,2,0)), animated=True)] for i in img_list]
ani = animation.ArtistAnimation(fig, ims, interval=1000, repeat_delay=1000, blit=True)
ani.save("anim.mp4")
HTML(ani.to_jshtml())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment