-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_dir.py
More file actions
209 lines (175 loc) · 7.48 KB
/
Copy pathtest_dir.py
File metadata and controls
209 lines (175 loc) · 7.48 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import os
import json
import glob
from tqdm import tqdm
from os.path import join, exists
import datetime
import argparse
import collections
from distutils.version import LooseVersion
# Numerical libs
import pickle
import numpy as np
import torch
import torch.nn as nn
from scipy.io import loadmat
# Our libs
from dataset import TestDataset
from models import ModelBuilder, SegmentationModule
from utils import colorEncode
from lib.nn import user_scattered_collate, async_copy_to
from lib.utils import as_numpy, mark_volatile
import lib.utils.data as torchdata
import cv2
import warnings
warnings.filterwarnings("ignore")
def visualize_result(data, preds, output_dir):
colors = loadmat('data/color150.mat')['colors']
(img_folder, info) = data
# prediction
pred_color = colorEncode(preds, colors)
# aggregate images and save
#im_vis = np.concatenate((img, pred_color),
# axis=1).astype(np.uint8)
im_vis = pred_color#.astype(np.uint8)
img_name = info.split('/')[-1]
#img_folder = info.split('/')[-2]
write_path = join(output_dir, img_folder)
write_np_path = join(output_dir+"_np", img_folder)
if not exists(write_path):
os.makedirs(write_path)
if not exists(write_np_path):
os.makedirs(write_np_path)
with open(join(write_np_path, img_name.replace(".bg.png",".sg.pkl")),'wb') as f:
pickle.dump(preds, f)
#print(join(output_dir,img_folder))
#cv2.imwrite(join(write_path, img_name.replace(".bg.png",".sg.png")), im_vis)
def test(segmentation_module, loader, args):
segmentation_module.eval()
for i, batch_data in tqdm(enumerate(loader), ncols=80, total=len(loader)):
# process data
batch_data = batch_data[0]
segSize = (batch_data['img_ori'].shape[0],
batch_data['img_ori'].shape[1])
img_resized_list = batch_data['img_data']
with torch.no_grad():
pred = torch.zeros(1, args.num_class, segSize[0], segSize[1])
for img in img_resized_list:
feed_dict = batch_data.copy()
feed_dict['img_data'] = img
del feed_dict['img_ori']
del feed_dict['info']
del feed_dict['img_folder']
feed_dict = async_copy_to(feed_dict, args.gpu_id)
# forward pass
pred_tmp = segmentation_module(feed_dict, segSize=segSize)
pred = pred + pred_tmp.cpu() / len(args.imgSize)
_, preds = torch.max(pred, dim=1)
preds = as_numpy(preds.squeeze(0))
# visualization
visualize_result(
(batch_data['img_folder'],batch_data['info']),preds, args.result)
#print('[{}] iter {}'
# .format(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"), i))
def main(args):
torch.cuda.set_device(args.gpu_id)
# Network Builders
builder = ModelBuilder()
net_encoder = builder.build_encoder(
arch=args.arch_encoder,
fc_dim=args.fc_dim,
weights=args.weights_encoder)
net_decoder = builder.build_decoder(
arch=args.arch_decoder,
fc_dim=args.fc_dim,
num_class=args.num_class,
weights=args.weights_decoder,
use_softmax=True)
crit = nn.NLLLoss(ignore_index=-1)
segmentation_module = SegmentationModule(net_encoder, net_decoder, crit)
# Dataset and Loader
folder_names = ['golf','kitchen','office','airport_terminal','banquet',
'beach','boat','coffee_shop','conference_room','desert',
'football','hospital','ice_skating','stage','staircase',
'supermarket']
#folder_names = ['test1','test2']
list_test = []
for folder_name in folder_names:
path = join(args.test_img_dir,folder_name)
if not exists(path):
raise ValueError(path,"File Not Found!")
filenames = glob.glob(path+"/*.bg.png")
iter_files = tqdm(filenames, ncols=80)
for file_name in iter_files:
img_dict = collections.OrderedDict()
img_dict['fpath_img'] = file_name
img_dict['folder_name'] = folder_name
list_test.append(img_dict)
#print("list",list_test)
#list_test = [{'fpath_img': args.test_img}]
dataset_val = TestDataset(
list_test, args, max_sample=args.num_val)
loader_val = torchdata.DataLoader(
dataset_val,
batch_size=args.batch_size,
shuffle=False,
collate_fn=user_scattered_collate,
num_workers=5,
drop_last=True)
segmentation_module.cuda()
# Main loop
test(segmentation_module, loader_val, args)
print('Inference done!')
if __name__ == '__main__':
assert LooseVersion(torch.__version__) >= LooseVersion('0.4.0'), \
'PyTorch>=0.4.0 is required'
parser = argparse.ArgumentParser()
# Path related arguments
parser.add_argument('--test_img_dir', required=True)
parser.add_argument('--model_path', required=True,
help='folder to model path')
parser.add_argument('--suffix', default='_epoch_25.pth',
help="which snapshot to load")
# Model related arguments
parser.add_argument('--arch_encoder', default='resnet50_dilated8',
help="architecture of net_encoder")
parser.add_argument('--arch_decoder', default='ppm_bilinear_deepsup',
help="architecture of net_decoder")
parser.add_argument('--fc_dim', default=2048, type=int,
help='number of features between encoder and decoder')
# Data related arguments
parser.add_argument('--num_val', default=-1, type=int,
help='number of images to evalutate')
parser.add_argument('--num_class', default=150, type=int,
help='number of classes')
parser.add_argument('--batch_size', default=1, type=int,
help='batchsize. current only supports 1')
parser.add_argument('--imgSize', default=[300, 400, 500, 600],
nargs='+', type=int,
help='list of input image sizes.'
'for multiscale testing, e.g. 300 400 500')
parser.add_argument('--imgMaxSize', default=1000, type=int,
help='maximum input image size of long edge')
parser.add_argument('--padding_constant', default=8, type=int,
help='maxmimum downsampling rate of the network')
parser.add_argument('--segm_downsampling_rate', default=8, type=int,
help='downsampling rate of the segmentation label')
# Misc arguments
parser.add_argument('--result', default='.',
help='folder to output visualization results')
parser.add_argument('--gpu_id', default=0, type=int,
help='gpu_id for evaluation')
args = parser.parse_args()
print(args)
# absolute paths of model weights
args.weights_encoder = os.path.join(args.model_path,
'encoder' + args.suffix)
args.weights_decoder = os.path.join(args.model_path,
'decoder' + args.suffix)
assert os.path.exists(args.weights_encoder) and \
os.path.exists(args.weights_encoder), 'checkpoint does not exitst!'
if not os.path.isdir(args.result):
os.makedirs(args.result)
if not os.path.isdir(args.result+"_np"):
os.makedirs(args.result+"_np")
main(args)