-
Notifications
You must be signed in to change notification settings - Fork 21
/
demo.py
147 lines (117 loc) · 4.51 KB
/
demo.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
import math
import os
import random
import cv2 as cv
import numpy as np
import torch
from torchvision import transforms
from config import device, fg_path_test, a_path_test, bg_path_test
from data_gen import data_transforms, gen_trimap, fg_test_files, bg_test_files
from test import gen_test_names
from utils import compute_mse, compute_sad, ensure_folder, draw_str
def composite4(fg, bg, a, w, h):
print(fg.shape, bg.shape, a.shape, w, h)
fg = np.array(fg, np.float32)
bg_h, bg_w = bg.shape[:2]
x = 0
if bg_w > w:
x = np.random.randint(0, bg_w - w)
y = 0
if bg_h > h:
y = np.random.randint(0, bg_h - h)
bg = np.array(bg[y:y + h, x:x + w], np.float32)
alpha = np.zeros((h, w, 1), np.float32)
alpha[:, :, 0] = a
im = alpha * fg + (1 - alpha) * bg
im = im.astype(np.uint8)
return im, bg
def composite4_test(fg, bg, a, w, h):
fg = np.array(fg, np.float32)
bg_h, bg_w = bg.shape[:2]
x = max(0, int((bg_w - w) / 2))
y = max(0, int((bg_h - h) / 2))
crop = np.array(bg[y:y + h, x:x + w], np.float32)
alpha = np.zeros((h, w, 1), np.float32)
alpha[:, :, 0] = a / 255.
im = alpha * fg + (1 - alpha) * crop
im = im.astype(np.uint8)
new_a = np.zeros((bg_h, bg_w), np.uint8)
new_a[y:y + h, x:x + w] = a
new_im = bg.copy()
new_im[y:y + h, x:x + w] = im
return new_im, new_a, fg, bg
def process_test(im_name, bg_name):
im = cv.imread(fg_path_test + im_name)
a = cv.imread(a_path_test + im_name, 0)
h, w = im.shape[:2]
bg = cv.imread(bg_path_test + bg_name)
bh, bw = bg.shape[:2]
wratio = w / bw
hratio = h / bh
ratio = wratio if wratio > hratio else hratio
if ratio > 1:
bg = cv.resize(src=bg, dsize=(math.ceil(bw * ratio), math.ceil(bh * ratio)), interpolation=cv.INTER_CUBIC)
return composite4_test(im, bg, a, w, h)
if __name__ == '__main__':
checkpoint = 'BEST_checkpoint.tar'
checkpoint = torch.load(checkpoint)
model = checkpoint['model'].module
model = model.to(device)
model.eval()
transformer = data_transforms['valid']
ensure_folder('images')
names = gen_test_names()
names = random.sample(names, 10)
bg_test = 'data/bg_test/'
new_bgs = [f for f in os.listdir(bg_test) if
os.path.isfile(os.path.join(bg_test, f)) and f.endswith('.jpg')]
new_bgs = random.sample(new_bgs, 10)
for i, name in enumerate(names):
fcount = int(name.split('.')[0].split('_')[0])
bcount = int(name.split('.')[0].split('_')[1])
im_name = fg_test_files[fcount]
bg_name = bg_test_files[bcount]
img, alpha, fg, bg = process_test(im_name, bg_name)
cv.imwrite('images/{}_image.png'.format(i), img)
cv.imwrite('images/{}_alpha.png'.format(i), alpha)
print('\nStart processing image: {}'.format(name))
h, w = img.shape[:2]
trimap = gen_trimap(alpha)
cv.imwrite('images/{}_trimap.png'.format(i), trimap)
x = torch.zeros((1, 4, h, w), dtype=torch.float)
image = img[..., ::-1] # RGB
image = transforms.ToPILImage()(image)
image = transformer(image)
x[0:, 0:3, :, :] = image
x[0:, 3, :, :] = torch.from_numpy(trimap.copy() / 255.)
# Move to GPU, if available
x = x.type(torch.FloatTensor).to(device)
alpha = alpha / 255.
with torch.no_grad():
pred = model(x)
pred = pred.cpu().numpy()
pred = pred.reshape((h, w))
pred[trimap == 0] = 0.0
pred[trimap == 255] = 1.0
# Calculate loss
# loss = criterion(alpha_out, alpha_label)
mse_loss = compute_mse(pred, alpha, trimap)
sad_loss = compute_sad(pred, alpha)
str_msg = 'sad: %.4f, mse: %.4f' % (sad_loss, mse_loss)
print(str_msg)
out = (pred.copy() * 255).astype(np.uint8)
draw_str(out, (10, 20), str_msg)
cv.imwrite('images/{}_out.png'.format(i), out)
new_bg = new_bgs[i]
new_bg = cv.imread(os.path.join(bg_test, new_bg))
bh, bw = new_bg.shape[:2]
wratio = w / bw
hratio = h / bh
ratio = wratio if wratio > hratio else hratio
print('ratio: ' + str(ratio))
if ratio > 1:
new_bg = cv.resize(src=new_bg, dsize=(math.ceil(bw * ratio), math.ceil(bh * ratio)),
interpolation=cv.INTER_CUBIC)
im, bg = composite4(img, new_bg, pred, w, h)
cv.imwrite('images/{}_compose.png'.format(i), im)
cv.imwrite('images/{}_new_bg.png'.format(i), new_bg)