forked from KevinYuimin/StarGAN-Tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.py
executable file
·130 lines (98 loc) · 3.92 KB
/
util.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
"""
This code is modified from
- https://github.com/goldkim92/StarGAN-tensorflow/blob/master/util.py
"""
import os
from glob import glob
from collections import namedtuple
import numpy as np
import scipy.misc as scm
import matplotlib.pyplot as plt
def load_data_list(data_dir,phase='train'):
path = os.path.join(data_dir, phase, '*')
file_list = glob(path)
return file_list
def attr_extract(data_dir):
'''
This is for CelebA data only!
Return a dictionary with format of 'img_name': [1,-1...]
The data format of CelebA attr is as follow:
number of data | 202599
all attributes | 5_o_Clock_Shadow Arched_Eyebrows Attractive... totally 40 attrs
file1 | 000001.jpg -1 1 1 -1 -1 -1 -1 ...
file2 | 000002.jpg -1 -1 -1 1 -1 -1 -1 ...
...
'''
attr_list = {}
path = os.path.join(data_dir, 'list_attr_celeba.txt')
file = open(path,'r')
n = file.readline()
n = int(n.split('\n')[0]) # # of celebA img: 202599
attr_line = file.readline()
attr_names = attr_line.split('\n')[0].split() # attribute name
for line in file:
row = line.split('\n')[0].split()
img_name = row.pop(0)
row = [int(val) for val in row]
# img = img[..., ::-1] # bgr to rgb
attr_list[img_name] = row
file.close()
return attr_names, attr_list
def preprocess_attr(attr_names, attrA_list, attr_keys):
'''
Only take out the keys that is listed in attr_keys. Convert -1 to 0.
'''
#attr_keys = ['Black_Hair','Blond_Hair','Brown_Hair', 'Male', 'Young','Mustache','Pale_Skin']
attrA = []
for i in range(len(attrA_list)):
tmpA = [attrA_list[i][attr_names.index(val)] for val in attr_keys]
tmpA = [1. if val == 1 else 0. for val in tmpA]
attrA.append(tmpA)
return attrA
def preprocess_image(dataA_list, image_size, phase='train'):
imgA = [get_image(img_path, image_size, phase=phase) for img_path in dataA_list]
imgA = np.array(imgA)
return imgA
def preprocess_input(imgA, imgB, attrA, attrB, image_size, n_label):
# dataA = imgA + attrB , dataB = imgB + attrA
attrA = np.tile(np.reshape(attrA, [-1,1,1,n_label]),[1,image_size,image_size,1])
attrB = np.tile(np.reshape(attrB, [-1,1,1,n_label]),[1,image_size,image_size,1])
dataA = np.concatenate((imgA, attrB), axis=3)
dataB = np.concatenate((imgB, attrA), axis=3)
return dataA, dataB
def get_image(img_path, data_size, phase='train'):
img = scm.imread(img_path)
img_crop = img[15:203,9:169,:]
img_resize = scm.imresize(img_crop,[data_size,data_size,3])
img_resize = img_resize/127.5 - 1.
if phase == 'train' and np.random.random() >= 0.5:
img_resize = np.flip(img_resize,1)
return img_resize
def inverse_image(img):
img = (img + 1.) * 127.5
img[img > 255] = 255.
img[img < 0] = 0.
return img.astype(np.uint8)
def save_images(real, recon, fake, image_size, file_name, num=10):
img = np.concatenate((real,recon,fake), axis=0)
img = make3d(img, image_size, row=num, col=3)
img = inverse_image(img)
scm.imsave(file_name, img)
def save_images_test(img_list, image_size, file_name, num=10,col=6):
img = np.concatenate(img_list, axis=0)
img = make3d(img, image_size, row=num, col=col)
img = inverse_image(img)
scm.imsave(file_name, img)
def make3d(img, image_size, row, col):
# img.shape = [row*col, h, w, c]
# final: [row*h, col*w, c]
img = np.reshape(img, [col,row,image_size,image_size,3]) # [col, row, h, w, c]
img = unstack(img, axis=0) # col * [row, h, w, c]
img = np.concatenate(img, axis=2) # [row, h, col*w, c]
img = unstack(img, axis=0) # row * [h, col*w, c]
img = np.concatenate(img, axis=0) # [row*h, col*w, c]
return img
def unstack(img, axis):
d =img.shape[axis]
arr = [np.squeeze(a,axis=axis) for a in np.split(img, d, axis=axis)]
return arr