initial commit

This commit is contained in:
Iridoudou
2021-08-05 11:59:22 +08:00
parent a18b0197d8
commit 791f02f280
10 changed files with 275 additions and 6 deletions

7
make_gif.py Normal file
View File

@ -0,0 +1,7 @@
import matplotlib.pyplot as plt
import imageio, os
images = []
filenames = sorted(fn for fn in os.listdir('./output/') )
for filename in filenames:
images.append(imageio.imread('./output/'+filename))
imageio.mimsave('./output/gif.gif', images, duration=0.5)