-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
119 lines (100 loc) · 3.77 KB
/
main.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# -*- coding: utf-8 -*-
from PIL import Image
import sys
import dual_gradient
import seam_carving
def main():
'''
Fonction principale
exemple : python main.py "1.jpg" 0 30 30
Paramètres :
- Chemin d'accès à l'image (string)
- Choix
Rapetissement : 0
Agrandissement : 1
Elargissement : 2
- Nombre de seam carving horizontaux (k) (int)
- Nombre seam carving verticaux (kp) (int)
Cette fonction récupère l'image grâce au chemin passé en
paramètre, calcul de son gradient et applique un seam carving horizontal k fois
et un seam carving vertical kp fois (avec k et kp passés en paramètre) en
plusieurs étapes :
- Calcul d'une matrice de coût de l'image à partir de son gradient
- Detection de la seam optimale à partir de la pmatrice de coût
- Suppression de la seam déterminée
en affichant l'image à chaque fin de boucle pour suivre l'évolution
'''
chemin = str(sys.argv[1])
choix = int(sys.argv[2])
k = int(sys.argv[3])
kp = int(sys.argv[4])
if(choix>2 or choix<0):
print("Votre deuxième argument est invalide : ")
print(" 0 : Rapetissement")
print(" 1 : Agrandissement")
print(" 2 : Elargissement")
quit()
if(k < 0):
print("Votre troisième argument est invalide : argument négatif")
quit()
if(kp < 0):
print("Votre quatrième argument est invalide : argument négatif")
quit()
im = Image.open(chemin)
if(k > im.size[1] and choix != 1):
print("Votre troisième argument est invalide : dépassement de la taille de l'image")
quit()
if(kp > im.size[0] and choix != 1):
print("Votre quatrième argument est invalide : dépassement de la taille de l'image")
quit()
#image = im.load()
img = dual_gradient.gradient(im)
#print("grad fini")
if(choix == 0): # Rapetissement
compteur = k
while compteur>0:
im, img = seam_carving.vertical_carving(im,img)
im.save("gif/h"+str(k-compteur)+".bmp")
compteur-=1
compteur = kp
while compteur>0:
im, img = seam_carving.horizontal_carving(im,img)
im.save("gif/v"+str(kp-compteur)+".bmp")
compteur-=1
im.save("result.bmp")
elif(choix == 1): # Agrandissement
compteur = k
while compteur>0:
im, img = seam_carving.add_horizontal_carving(im,img)
compteur-=1
compteur = kp
while compteur>0:
im, img = seam_carving.add_vertical_carving(im,img)
compteur-=1
im.save("result.bmp")
else: # Elargissement
# On rapetissit d'abord
compteur = k
while compteur>0:
im, img = seam_carving.vertical_carving(im,img)
#im.save("gif/1h"+str(k-compteur)+".bmp")
compteur-=1
compteur = kp
while compteur>0:
im, img = seam_carving.horizontal_carving(im,img)
#im.save("gif/1v"+str(kp-compteur)+".bmp")
compteur-=1
#Et ensuite on agrandit
compteur = k
while compteur>0:
im, img = seam_carving.add_horizontal_carving(im,img)
#im.save("gif/2h"+str(kp-compteur)+".bmp")
compteur-=1
compteur = kp
while compteur>0:
im, img = seam_carving.add_vertical_carving(im,img)
#im.save("gif/2v"+str(kp-compteur)+".bmp")
compteur-=1
im.save("result.bmp")
if __name__ == "__main__":
main()