forked from elleryqueenhomels/arbitrary_style_transfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
91 lines (62 loc) · 2.26 KB
/
utils.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
# Utility
import numpy as np
from os import listdir, mkdir, sep
from os.path import join, exists, splitext
from scipy.misc import imread, imsave, imresize
def list_images(directory):
images = []
for file in listdir(directory):
name = file.lower()
if name.endswith('.png'):
images.append(join(directory, file))
elif name.endswith('.jpg'):
images.append(join(directory, file))
elif name.endswith('.jpeg'):
images.append(join(directory, file))
return images
def get_train_images(paths, resize_len=512, crop_height=256, crop_width=256):
images = []
for path in paths:
image = imread(path, mode='RGB')
height, width, _ = image.shape
if height < width:
new_height = resize_len
new_width = int(width * new_height / height)
else:
new_width = resize_len
new_height = int(height * new_width / width)
image = imresize(image, [new_height, new_width], interp='nearest')
# crop the image
start_h = np.random.choice(new_height - crop_height + 1)
start_w = np.random.choice(new_width - crop_width + 1)
image = image[start_h:(start_h + crop_height), start_w:(start_w + crop_width), :]
images.append(image)
images = np.stack(images, axis=0)
return images
def get_images(paths, height=None, width=None):
if isinstance(paths, str):
paths = [paths]
images = []
for path in paths:
image = imread(path, mode='RGB')
if height is not None and width is not None:
image = imresize(image, [height, width], interp='nearest')
images.append(image)
images = np.stack(images, axis=0)
return images
def save_images(paths, datas, save_path, prefix=None, suffix=None):
if isinstance(paths, str):
paths = [paths]
assert(len(paths) == len(datas))
if not exists(save_path):
mkdir(save_path)
if prefix is None:
prefix = ''
if suffix is None:
suffix = ''
for i, path in enumerate(paths):
data = datas[i]
name, ext = splitext(path)
name = name.split(sep)[-1]
path = join(save_path, prefix + name + suffix + ext)
imsave(path, data)