-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtest.py
158 lines (134 loc) · 5.35 KB
/
test.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
import argparse
import glob
import os
import PIL.Image as pil
import cv2
from monolayout import model
import numpy as np
import torch
from torchvision import transforms
def get_args():
parser = argparse.ArgumentParser(
description="Testing arguments for MonoLayout")
parser.add_argument("--image_path", type=str,
help="path to folder of images", required=True)
parser.add_argument("--model_path", type=str,
help="path to MonoLayout model", required=True)
parser.add_argument(
"--ext",
type=str,
default="png",
help="extension of images in the folder")
parser.add_argument("--out_dir", type=str,
default="output directory to save topviews")
parser.add_argument("--type", type=str,
default="static/dynamic/both")
return parser.parse_args()
def save_topview(idx, tv, name_dest_im):
tv_np = tv.squeeze().cpu().numpy()
true_top_view = np.zeros((tv_np.shape[1], tv_np.shape[2]))
true_top_view[tv_np[1] > tv_np[0]] = 255
dir_name = os.path.dirname(name_dest_im)
if not os.path.exists(dir_name):
os.makedirs(dir_name)
cv2.imwrite(name_dest_im, true_top_view)
print("Saved prediction to {}".format(name_dest_im))
def test(args):
models = {}
device = torch.device("cuda")
encoder_path = os.path.join(args.model_path, "encoder.pth")
encoder_dict = torch.load(encoder_path, map_location=device)
feed_height = encoder_dict["height"]
feed_width = encoder_dict["width"]
models["encoder"] = model.Encoder(18, feed_width, feed_height, False)
filtered_dict_enc = {
k: v for k,
v in encoder_dict.items() if k in models["encoder"].state_dict()}
models["encoder"].load_state_dict(filtered_dict_enc)
if args.type == "both":
static_decoder_path = os.path.join(
args.model_path, "static_decoder.pth")
dynamic_decoder_path = os.path.join(
args.model_path, "dynamic_decoder.pth")
models["static_decoder"] = model.Decoder(
models["encoder"].resnet_encoder.num_ch_enc)
models["static_decoder"].load_state_dict(
torch.load(static_decoder_path, map_location=device))
models["dynamic_decoder"] = model.Decoder(
models["encoder"].resnet_encoder.num_ch_enc)
models["dynamic_decoder"].load_state_dict(
torch.load(dynamic_decoder_path, map_location=device))
else:
decoder_path = os.path.join(args.model_path, "decoder.pth")
models["decoder"] = model.Decoder(
models["encoder"].resnet_encoder.num_ch_enc)
models["decoder"].load_state_dict(
torch.load(decoder_path, map_location=device))
for key in models.keys():
models[key].to(device)
models[key].eval()
if os.path.isfile(args.image_path):
# Only testing on a single image
paths = [args.image_path]
output_directory = os.path.dirname(args.image_path)
elif os.path.isdir(args.image_path):
# Searching folder for images
paths = glob.glob(os.path.join(
args.image_path, '*.{}'.format(args.ext)))
output_directory = args.out_dir
try:
os.mkdir(output_directory)
except BaseException:
pass
else:
raise Exception(
"Can not find args.image_path: {}".format(
args.image_path))
print("-> Predicting on {:d} test images".format(len(paths)))
# PREDICTING ON EACH IMAGE IN TURN
with torch.no_grad():
for idx, image_path in enumerate(paths):
# Load image and preprocess
input_image = pil.open(image_path).convert('RGB')
original_width, original_height = input_image.size
input_image = input_image.resize(
(feed_width, feed_height), pil.LANCZOS)
input_image = transforms.ToTensor()(input_image).unsqueeze(0)
# PREDICTION
input_image = input_image.to(device)
features = models["encoder"](input_image)
output_name = os.path.splitext(os.path.basename(image_path))[0]
print(
"Processing {:d} of {:d} images- ".format(idx + 1, len(paths)))
if args.type == "both":
static_tv = models["static_decoder"](
features, is_training=False)
dynamic_tv = models["dynamic_decoder"](
features, is_training=False)
save_topview(
idx,
static_tv,
os.path.join(
args.out_dir,
"static",
"{}.png".format(output_name)))
save_topview(
idx,
dynamic_tv,
os.path.join(
args.out_dir,
"dynamic",
"{}.png".format(output_name)))
else:
tv = models["decoder"](features, is_training=False)
save_topview(
idx,
tv,
os.path.join(
args.out_dir,
args.type,
"{}.png".format(output_name)))
print('-> Done!')
if __name__ == "__main__":
args = get_args()
test(args)