-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgif_maker.py
37 lines (31 loc) · 1.21 KB
/
gif_maker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from config import GifMakerConfig as Config
import matplotlib.pyplot as plt # type: ignore
import matplotlib.animation as animation # type: ignore
import glob
window_size = 5
dpi = 150
def sort_rule(x):
return int(x.split("-")[1].split(".")[0])
if __name__ == "__main__":
source_dir = Config.source_dir
file_names = glob.glob(source_dir + "*.png")
file_names = sorted(file_names, key=sort_rule)
figsize = (window_size, window_size)
fig = plt.figure(figsize=figsize, dpi=dpi)
ax = plt.subplot(1, 1, 1)
ax.spines["right"].set_color("None")
ax.spines["top"].set_color("None")
ax.spines["left"].set_color("None")
ax.spines["bottom"].set_color("None")
ax.tick_params(axis="x", which="both", top="off", bottom="off", labelbottom="off")
ax.tick_params(axis="y", which="both", left="off", right="off", labelleft="off")
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
ims = []
for file_name in file_names:
img = plt.imread(file_name)
im = plt.imshow(img, interpolation="spline36")
ims.append([im])
ani = animation.ArtistAnimation(fig, ims)
# ani.save(source_dir + 'animation.gif', writer='imagemagick')
plt.show()