-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresize_jpg.py
175 lines (84 loc) · 3.72 KB
/
resize_jpg.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
from os import chdir, getcwd
from PIL import Image
from matplotlib import pyplot as plt
import glob
def resizedir(dir,largeur,hauteur = 0, marque = ''):
"""dir = lien de l'image, largeur a introduire, hauteur facultative (sinon proportionnelle), marque = eventuel indice qui sera mis à la fin du nom du fichier pour mieux le repérer"""
img = Image.open(dir)
if hauteur == 0:
w = (largeur/float(img.size[0]))
# w = rapport largeur finale/largeur initiale
hauteur = int((float(img.size[1])*float(w)))
img = img.resize((largeur,hauteur), Image.ANTIALIAS)
img.save(dir + marque +'_reshaped.jpg')
#je rajoute le terme 'reshaped' dans le nom pour identifier les images qui sont au bon format
def resizejpg(img,largeur,hauteur, marque = ''):
""" img = image qu'on veur adimensionner,
-> la fonction fait exactement la meme chose que 'resizedir' et sauvegarde l'image dans la localisation ou l'on se situe (dernier chdir("_"))"""
if hauteur == 0:
w = (largeur/float(img.size[0]))
# w = rapport largeur finale/largeur initiale
hauteur = int((float(img.size[1])*float(w)))
img = img.resize((largeur,hauteur), Image.ANTIALIAS)
img.save(marque+'_reshapejpg.jpg')
def vertical_resizejpg(img, hauteur):
""" ne modifie pas l'element, elle le renvoie"""*
h = (hauteur/float(img.size[1]))
# h = rapport hauteur finale/hauteur initiale
largeur = int((float(img.size[0])*float(h)))
img = img.resize((largeur,hauteur), Image.ANTIALIAS)
#faire gaffe
return(img)
## traitements réalisés sur un groupe d'images (dans un dossier)
def folder_resize(dir, hauteur, largeur, tag = ''):
"""
exemple dir = 'C:\\Users\sacha\Desktop\DOSSIER TIPE TEST\convertir', tag = 'test'
"""
chdir(dir)
for filename in glob.glob('*.jpg'):
test = Image.open(filename)
mat = np.array(vertical_resizejpg(test, hauteur))
fin = complete_largeur(mat, largeur)
img = Image.fromarray(fin.astype('uint8'), 'RGB')
img.save(tag+filename+'reshaped.jpg')
## a essayer pour vérifier que le code marche
"""
#resize('monster_can_test.jpg', 480)
#resize2('monster_can_test.jpg', 480, 320)
#img = Image.open(lien)
#resize2jpg(img,480,320, marque = '')
#dir = 'C:\\Users\sacha\Desktop\TIPE\programmes utilisés\Monster_can_before'
#bundle_resize(dir, 480, 320)
dir = "C:/Users/sacha/Desktop/TIPE/programmes utilisés/test.jpg"
test = Image.open(dir)
#resize en choisissant la largeur
resizedir(dir,480,0)
x = Image.open("C:/Users/sacha/Desktop/TIPE/programmes utilisés/test.jpg_reshaped.jpg")
plt.title("application du programme resize_jpg sur cette image:")
plt.imshow(x)
plt.show()
##
#resize en choisissant la hauteur et la largeur (déforme l'objet)
resizedir(dir, 480, 320)
z = Image.open("C:/Users/sacha/Desktop/TIPE/programmes utilisés/test.jpg_reshaped.jpg")
#resize en choisissant la hauteur
y = vertical_resizejpg(test, 320)
print(test.size)
print(x.size)
print(y.size)
print(z.size)
f, ax = plt.subplots(1,2)
ax[0].imshow(test, cmap=plt.cm.binary)
ax[0].title.set_text('original'+' ' + str(test.size[0]) + 'x' + str(test.size[1]))
ax[1].imshow(z, cmap=plt.cm.binary)
ax[1].title.set_text('resize dans le format cherché' +' ' + str(z.size[0]) + 'x' + str(z.size[1]))
plt.show()
f, ax = plt.subplots(1,3)
ax[0].imshow(test, cmap=plt.cm.binary)
ax[0].title.set_text('original'+' ' + str(test.size[0]) + 'x' + str(test.size[1]))
ax[1].imshow(y, cmap=plt.cm.binary)
ax[1].title.set_text('vertical resize'+' ' + str(y.size[0]) + 'x' + str(y.size[1]))
ax[2].imshow(x, cmap=plt.cm.binary)
ax[2].title.set_text('horizontal resize'+' ' + str(x.size[0]) + 'x' + str(x.size[1]))
plt.show()
"""