-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
111 lines (87 loc) · 3.33 KB
/
test.py
File metadata and controls
111 lines (87 loc) · 3.33 KB
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
import cv2
import os
import argparse
import glob
import numpy as np
import torch
from torch.autograd import Variable
from utils import *
# from UNet import UNet
from P_3UNet_Darts import UNet
import time
parser = argparse.ArgumentParser(description="PReNet_Test")
parser.add_argument("--logdir", type=str, default="logs/", help='path to model and log files')
parser.add_argument("--data_path", type=str, default="test12/rainy", help='path to training data')
parser.add_argument("--save_path", type=str, default="results/Rain12", help='path to save results')
parser.add_argument("--use_GPU", type=bool, default=True, help='use GPU or not')
parser.add_argument("--gpu_id", type=str, default="0", help='GPU id')
parser.add_argument("--recurrent_iter", type=int, default=6, help='number of recursive stages')
opt = parser.parse_args()
def normalize(data):
return data / 255.
def crop_torch_image(img, d=32):
"""
Make dimensions divisible by d
image is [1, 3, W, H] or [3, W, H]
:param pil img:
:param d:
:return:
"""
new_size = (img.shape[-2] - img.shape[-2] % d,
img.shape[-1] - img.shape[-1] % d)
pad = ((img.shape[-2] - new_size[-2]) // 2, (img.shape[-1] - new_size[-1]) // 2)
if len(img.shape) == 4:
return img[:, :, pad[-2]: pad[-2] + new_size[-2], pad[-1]: pad[-1] + new_size[-1]]
assert len(img.shape) == 3
return img[:, pad[-2]: pad[-2] + new_size[-2], pad[-1]: pad[-1] + new_size[-1]]
def main():
os.makedirs(opt.save_path, exist_ok=True)
# Build model
print('Loading model ...\n')
model = UNet()
if opt.use_GPU:
model = model.cuda()
model.load_state_dict(torch.load(os.path.join(opt.logdir, 'net_latest.pth')))
# # 重新保存网络参数,此时注意改为非zip格式
# torch.save(model.state_dict(), os.path.join(opt.logdir, 'final_vgg.pth'), _use_new_zipfile_serialization=False)
model.eval()
time_test = 0
count = 0
for img_name in os.listdir(opt.data_path):
img_path = os.path.join(opt.data_path, img_name)
# input image
y = cv2.imread(img_path)
b, g, r = cv2.split(y)
y = cv2.merge([r, g, b])
y = normalize(np.float32(y))
y = np.expand_dims(y.transpose(2, 0, 1), 0)
y = crop_torch_image(torch.Tensor(y), d=32)
y = Variable(y)
if opt.use_GPU:
y = y.cuda()
with torch.no_grad(): #
if opt.use_GPU:
torch.cuda.synchronize()
start_time = time.time()
out = model(y)
out = torch.clamp(out, 0., 1.)
if opt.use_GPU:
torch.cuda.synchronize()
end_time = time.time()
dur_time = end_time - start_time
time_test += dur_time
print(img_name, ': ', dur_time)
if opt.use_GPU:
save_out = np.uint8(255 * out.data.cpu().numpy().squeeze()) #back to cpu
else:
save_out = np.uint8(255 * out.data.numpy().squeeze())
save_out = save_out.transpose(1, 2, 0)
b, g, r = cv2.split(save_out)
save_out = cv2.merge([r, g, b])
our_name = img_name.split('.')[0]
our_name = our_name + '.png'
cv2.imwrite(os.path.join(opt.save_path, our_name), save_out)
count += 1
print('Avg. time:', time_test/count)
if __name__ == "__main__":
main()