-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpseudo_generate.py
369 lines (290 loc) · 11.8 KB
/
pseudo_generate.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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
from __future__ import division
import warnings
import numpy as np
from Networks.HR_Net.seg_hrnet import get_seg_model
import torch.nn as nn
import torch.nn.functional as F
from torchvision import datasets, transforms
import dataset
import math
from image import *
from utils import *
import logging
import nni
from nni.utils import merge_parameter
from config import return_args, args
warnings.filterwarnings('ignore')
setup_seed(args.seed)
logger = logging.getLogger('mnist_AutoML')
def main(args):
if args['dataset'] == 'ShanghaiA':
test_file = './npydata/ShanghaiA_train.npy'
elif args['dataset'] == 'ShanghaiB':
test_file = './npydata/ShanghaiB_train.npy'
elif args['dataset'] == 'UCF_QNRF':
test_file = './npydata/qnrf_train.npy'
elif args['dataset'] == 'JHU':
test_file = './npydata/jhu_train.npy'
elif args['dataset'] == 'NWPU':
test_file = './npydata/nwpu_train.npy'
with open(test_file, 'rb') as outfile:
val_list = np.load(outfile).tolist()
os.environ['CUDA_VISIBLE_DEVICES'] = args['gpu_id']
model = get_seg_model()
model = nn.DataParallel(model, device_ids=[0])
model = model.cuda()
optimizer = torch.optim.Adam(
[
{'params': model.parameters(), 'lr': args['lr']},
])
print(args['pre'])
if not os.path.exists(args['save_path']):
os.makedirs(args['save_path'])
if args['pre']:
if os.path.isfile(args['pre']):
print("=> loading checkpoint '{}'".format(args['pre']))
checkpoint = torch.load(args['pre'])
model.load_state_dict(checkpoint['state_dict'], strict=False)
args['start_epoch'] = checkpoint['epoch']
args['best_pred'] = checkpoint['best_prec1']
else:
print("=> no checkpoint found at '{}'".format(args['pre']))
torch.set_num_threads(args['workers'])
print(args['best_pred'], args['start_epoch'])
if args['preload_data'] == True:
test_data = pre_data(val_list, args, train=False)
else:
test_data = val_list
'''inference '''
prec1, visi = validate(test_data, model, args)
is_best = prec1 < args['best_pred']
args['best_pred'] = min(prec1, args['best_pred'])
print('\nThe visualizations are provided in ', args['save_path'])
save_checkpoint({
'arch': args['pre'],
'state_dict': model.state_dict(),
'best_prec1': args['best_pred'],
'optimizer': optimizer.state_dict(),
}, visi, is_best, args['save_path'])
def mkdir(path):
folder = os.path.exists(path)
if not folder: # 判断是否存在文件夹如果不存在则创建为文件夹
os.makedirs(path) # makedirs 创建文件时如果路径不存在会创建这个路径
print
"--- new folder... ---"
print
"--- OK ---"
else:
print
"--- There is this folder! ---"
def pre_data(train_list, args, train):
print("Pre_load dataset ......")
data_keys = {}
count = 0
for j in range(len(train_list)):
Img_path = train_list[j]
fname = os.path.basename(Img_path)
img, fidt_map, kpoint = load_data_fidt(Img_path, args, train)
blob = {}
blob['img'] = img
blob['kpoint'] = np.array(kpoint)
blob['fidt_map'] = fidt_map
blob['fname'] = fname
data_keys[count] = blob
count += 1
return data_keys
def save_img(read_path,save_path):
image = cv2.imread(read_path)
print('save_path',save_path)
cv2.imwrite(save_path, image)
def save_generated_pseudo(img_path,image,path_save,pre_gt,d_map,kpoint):
images_path = img_path
gt_path = pre_gt
mkdir(path_save + '/images')
mkdir(path_save + '/gt_show')
mkdir(path_save + '/gt_fidt_map')
save_img_path = path_save + '/images/' + images_path
save_gt_path = path_save + '/gt_show/' + images_path
save_fidt_path = path_save + '/gt_fidt_map/' + images_path.replace('.jpg','.h5')
image = '/public/home/qiuyl/FIDTM-master/data/ShanghaiTech/part_B_final/train_data/images/' + img_path
parent_dir = os.path.dirname(save_img_path)
if not os.path.exists(parent_dir):
os.makedirs(parent_dir, exist_ok=True)
save_img(image, save_img_path)
parent_dir = os.path.dirname(save_gt_path)
if not os.path.exists(parent_dir):
os.makedirs(parent_dir, exist_ok=True)
cv2.imwrite(save_gt_path, gt_path)
parent_dir = os.path.dirname(save_fidt_path)
if not os.path.exists(parent_dir):
os.makedirs(parent_dir, exist_ok=True)
with h5py.File(save_fidt_path, 'w') as hf:
hf['fidt_map'] = np.asarray(d_map[0][0])
hf['kpoint'] = kpoint
def validate(Pre_data, model, args):
print('begin test')
batch_size = 1
test_loader = torch.utils.data.DataLoader(
dataset.listDataset(Pre_data, args['save_path'],
shuffle=False,
transform=transforms.Compose([
transforms.ToTensor(), transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225]),
]),
args=args, train=False),
batch_size=1)
model.eval()
mae = 0.0
mse = 0.0
visi = []
index = 0
if not os.path.exists('./local_eval/point_files'):
os.makedirs('./local_eval/point_files')
'''output coordinates'''
f_loc = open("./local_eval/point_files/A_localization.txt", "w+")
for i, (fname, img, fidt_map, kpoint) in enumerate(test_loader):
count = 0
image = img
img = img.cuda()
if len(img.shape) == 5:
img = img.squeeze(0)
if len(fidt_map.shape) == 5:
fidt_map = fidt_map.squeeze(0)
if len(img.shape) == 3:
img = img.unsqueeze(0)
if len(fidt_map.shape) == 3:
fidt_map = fidt_map.unsqueeze(0)
with torch.no_grad():
d6 = model(img)
'''return counting and coordinates'''
count, pred_kpoint, f_loc = LMDS_counting(d6, i + 1, f_loc, args)
gt_count,kpoint,f_loc_gt = LMDS_counting(fidt_map, i + 1, f_loc, args)
point_map,map = generate_point_map(pred_kpoint, f_loc, rate=1)
path_save = args['save_pseudo']
show_fidt = show_map(d6.data.cpu().numpy())
print(d6.data.cpu().numpy())
print(np.shape(d6.data.cpu().numpy()[0][0]))
save_generated_pseudo(fname[0],image,path_save,show_fidt,d6.data.cpu().numpy(),pred_kpoint)
if args['visual'] == True:
if not os.path.exists(args['save_path'] + '_box/'):
os.makedirs(args['save_path'] + '_box/')
ori_img, box_img = generate_bounding_boxes(pred_kpoint, fname)
show_fidt = show_map(d6.data.cpu().numpy())
gt_show = show_map(fidt_map.data.cpu().numpy())
res = np.hstack((ori_img, gt_show, show_fidt, point_map, box_img))
cv2.imwrite(args['save_path'] + '_box/' + fname[0], res)
# gt_count = torch.sum(kpoint).item()
mae += abs(gt_count - count)
mse += abs(gt_count - count) * abs(gt_count - count)
f = args['save_path']+"lucky_A-Q.txt"
if i % 1 == 0:
print('{fname} Gt {gt:.2f} Pred {pred}'.format(fname=fname[0], gt=gt_count, pred=count))
with open(f, "a") as file:
file.write('{fname} {gt:.2f} {pred}'.format(fname=fname[0], gt=gt_count, pred=count) + "\n")
visi.append(
[img.data.cpu().numpy(), d6.data.cpu().numpy(), fidt_map.data.cpu().numpy(),
fname])
index += 1
mae = mae * 1.0 / (len(test_loader) * batch_size)
mse = math.sqrt(mse / (len(test_loader)) * batch_size)
nni.report_intermediate_result(mae)
print(' \n* MAE {mae:.3f}\n'.format(mae=mae), '* MSE {mse:.3f}'.format(mse=mse))
return mae, visi
def LMDS_counting(input, w_fname, f_loc, args):
input_max = torch.max(input).item()
''' find local maxima'''
if args['dataset'] == 'UCF_QNRF':
input = nn.functional.avg_pool2d(input, (3, 3), stride=1, padding=1)#22.12.16
keep = nn.functional.max_pool2d(input, (3, 3), stride=1, padding=1)
else:
keep = nn.functional.max_pool2d(input, (3, 3), stride=1, padding=1)
keep = (keep == input).float()
input = keep * input
'''set the pixel valur of local maxima as 1 for counting'''
input[input < 100.0 / 255.0 * input_max] = 0
input[input > 0] = 1
''' negative sample'''
if input_max < 0.1:
input = input * 0
count = int(torch.sum(input).item())
kpoint = input.data.squeeze(0).squeeze(0).cpu().numpy()
f_loc.write('{} {} '.format(w_fname, count))
return count, kpoint, f_loc
def generate_point_map(kpoint, f_loc, rate=1):
'''obtain the location coordinates'''
pred_coor = np.nonzero(kpoint)
point_map = np.zeros((int(kpoint.shape[0] * rate), int(kpoint.shape[1] * rate), 3), dtype="uint8") + 255 # 22
# count = len(pred_coor[0])
map = np.zeros((int(kpoint.shape[0] * rate), int(kpoint.shape[1] * rate)))
coord_list = []
for i in range(0, len(pred_coor[0])):
h = int(pred_coor[0][i] * rate)
w = int(pred_coor[1][i] * rate)
coord_list.append([w, h])
cv2.circle(point_map, (w, h), 2, (0, 0, 0), -1)
for data in coord_list:
f_loc.write('{} {} '.format(math.floor(data[0]), math.floor(data[1])))
f_loc.write('\n')
return point_map,map
def generate_bounding_boxes(kpoint, fname):
'''change the data path'''
Img_data = cv2.imread(
'/home/dkliang/projects/synchronous/dataset/ShanghaiTech/part_A_final/test_data/images/' + fname[0])
ori_Img_data = Img_data.copy()
'''generate sigma'''
pts = np.array(list(zip(np.nonzero(kpoint)[1], np.nonzero(kpoint)[0])))
leafsize = 2048
# build kdtree
tree = scipy.spatial.KDTree(pts.copy(), leafsize=leafsize)
distances, locations = tree.query(pts, k=4)
for index, pt in enumerate(pts):
pt2d = np.zeros(kpoint.shape, dtype=np.float32)
pt2d[pt[1], pt[0]] = 1.
if np.sum(kpoint) > 1:
sigma = (distances[index][1] + distances[index][2] + distances[index][3]) * 0.1
else:
sigma = np.average(np.array(kpoint.shape)) / 2. / 2. # case: 1 point
sigma = min(sigma, min(Img_data.shape[0], Img_data.shape[1]) * 0.05)
if sigma < 6:
t = 2
else:
t = 2
Img_data = cv2.rectangle(Img_data, (int(pt[0] - sigma), int(pt[1] - sigma)),
(int(pt[0] + sigma), int(pt[1] + sigma)), (0, 255, 0), t)
return ori_Img_data, Img_data
def show_map(input):
input[input < 0] = 0
input = input[0][0]
fidt_map1 = input
fidt_map1 = fidt_map1 / np.max(fidt_map1) * 255
fidt_map1 = fidt_map1.astype(np.uint8)
fidt_map1 = cv2.applyColorMap(fidt_map1, 2)
return fidt_map1
def show_map2(input):
input[input < 0] = 0
input = input[0][0]
fidt_map1 = input
fidt_map1 = fidt_map1 / np.max(fidt_map1) * 255
fidt_map1 = fidt_map1.astype(np.uint8)
# fidt_map1 = cv2.applyColorMap(fidt_map1, 2)
return fidt_map1
# class AverageMeter(object):
# """Computes and stores the average and current value"""
# def __init__(self):
# self.reset()
# def reset(self):
# self.val = 0
# self.avg = 0
# self.sum = 0
# self.count = 0
# def update(self, val, n=1):
# self.val = val
# self.sum += val * n
# self.count += n
# self.avg = self.sum / self.count
if __name__ == '__main__':
tuner_params = nni.get_next_parameter()
logger.debug(tuner_params)
params = vars(merge_parameter(return_args, tuner_params))
print(params)
main(params)