forked from Nik-V9/AirObject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eval.py
346 lines (260 loc) · 13.8 KB
/
eval.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
import os
import pickle
import yaml
import argparse
import torch
from torch.utils import data
import numpy as np
from scipy.spatial import Delaunay
from tqdm import tqdm
from model.build_model import build_gcn, build_netvlad, build_seqnet, build_airobj
from datasets.vis.vis import YouTubeVIS
from datasets.uvo.uvo import UVO
from datasets.ovis.ovis import OVIS
from datasets.tao.tao import TAO
from datasets.utils.batch_collator import eval_custom_collate
def get_neighbor(vertex_id,tri):
# get neighbor vertexes of a vertex
helper = tri.vertex_neighbor_vertices
index_pointers = helper[0]
indices = helper[1]
result_ids = indices[index_pointers[vertex_id]:index_pointers[vertex_id+1]]
return result_ids
def get_adj(points, tri):
adj = np.zeros((points.shape[0], points.shape[0]))
for i in range(points.shape[0]):
adj[i,get_neighbor(i,tri)] = 1
return adj
def pickle_read(path):
with open(path, 'rb') as fp:
pickle_file = pickle.load(fp)
return pickle_file
def pickle_write(path, dump_file):
with open(path, 'wb') as fp:
pickle.dump(dump_file, fp)
def get_pr_curve_area(pr_curve):
'''
pr_curve: [[p0, r0], [p1, r1]... [pn, rn]], thr: small->big, precision: small->big, recall: big->small
'''
area = 0.0
for i in range(1, len(pr_curve)):
p0, r0 = pr_curve[i-1]
p1, r1 = pr_curve[i]
area = area + (r0 - r1) * (p1 + p0) / 2
return area
def eval(configs):
## command line config
base_dir = configs['base_dir']
## other
configs['num_gpu'] = [0]
configs['public_model'] = 0
device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu")
if configs['method'] in ['2d_baseline', '3d_baseline']:
gcn_model = build_gcn(configs)
gcn_model.eval()
if configs['method'] in ['netvlad', 'seqnet', 'seqnet_1']:
netvlad_model = build_netvlad(configs)
netvlad_model.eval()
if configs['method'] in ['seqnet', 'seqnet_1']:
seqnet_model = build_seqnet(configs)
seqnet_model.eval()
if configs['method'] in ['airobj', 'airobj_1']:
airobj_model = build_airobj(configs)
airobj_model.eval()
if not configs['resume']:
if configs['dataset'] == 'YT-VIS':
dataset = YouTubeVIS(basedir=base_dir, videos=configs['video_list'], seqlen=4, return_img=False, return_points=True, return_videonames=True)
elif configs['dataset'] == 'UVO':
dataset = UVO(basedir=base_dir, instance_path=configs['instance_path'], videos=configs['video_list'], seqlen=4, return_img=False, return_points=True, return_videonames=True)
val_dataset = UVO(basedir=configs['val_base_dir'], instance_path=configs['val_instance_path'], videos=configs['val_video_list'], seqlen=4, return_img=False, return_points=True, return_videonames=True)
dataset = torch.utils.data.ConcatDataset([dataset, val_dataset])
elif configs['dataset'] == 'OVIS':
dataset = OVIS(basedir=base_dir, instance_path=configs['instance_path'], videos=configs['video_list'], seqlen=4, return_img=False, return_points=True, return_videonames=True)
elif configs['dataset'] == 'TAO':
dataset = TAO(basedir=base_dir, videos=configs['video_list'], seqlen=4, return_img=False, return_points=True, return_videonames=True)
else:
print('Unknown Dataset')
loader = data.DataLoader(dataset=dataset, collate_fn=eval_custom_collate, batch_size=1, shuffle=False)
video_objects = {}
print('==> Creating Video Object Dictionary')
for iteration, batch in enumerate(tqdm(loader)):
ann_masks, points, videonames = batch[0], batch[1], batch[2]
for i in range(len(ann_masks)): # Batch Size
if videonames[i] not in video_objects.keys():
video_objects[videonames[i]] = {}
for j in range(len(ann_masks[i])): # Sequence Length
keypoints = points[i][j]['points']
descriptors = points[i][j]['point_descs']
for a in range(len(ann_masks[i][j])):
ann_mask = ann_masks[i][j][a]['ann_mask']
object_filter = ann_mask[keypoints[:,0].T,keypoints[:,1].T]
np_obj_pts = keypoints[np.where(object_filter==1)[0]].numpy()
try:
tri = Delaunay(np_obj_pts, qhull_options='QJ')
except:
continue
adj = get_adj(np_obj_pts, tri)
obj_id = str(ann_masks[i][j][a]['obj_id'])
if obj_id not in video_objects[videonames[i]].keys():
video_objects[videonames[i]][obj_id] = {}
video_objects[videonames[i]][obj_id]['seq_points'] = []
video_objects[videonames[i]][obj_id]['seq_descs'] = []
video_objects[videonames[i]][obj_id]['seq_adjs'] = []
video_objects[videonames[i]][obj_id]['seq_adjs'].append(torch.from_numpy(adj).float().to(device))
video_objects[videonames[i]][obj_id]['seq_points'].append(keypoints[np.where(object_filter==1)[0]].float().to(device))
video_objects[videonames[i]][obj_id]['seq_descs'].append(descriptors[np.where(object_filter==1)[0]].float().to(device))
os.makedirs(configs['save_dir'], exist_ok=True)
pickle_write(os.path.join(configs['save_dir'], 'video_objects.pkl'), video_objects)
else:
video_objects = pickle_read(configs['video_objects_path'])
with torch.no_grad():
for video in tqdm(video_objects.keys()):
objects = video_objects[video]
for obj_id in objects.keys():
vid_obj_length = int(len(objects[obj_id]['seq_points']))
split = int(vid_obj_length/2)
if split < 2:
continue
# Query
iter_points, iter_descs, iter_adj = [], [], []
for l in range(split):
iter_points.append(objects[obj_id]['seq_points'][l].detach().clone())
iter_descs.append(objects[obj_id]['seq_descs'][l].detach().clone())
iter_adj.append(objects[obj_id]['seq_adjs'][l].detach().clone())
if configs['method'] in ['2d_baseline', '3d_baseline']:
iter_obj_descs, iter_locs = gcn_model(iter_points, iter_descs, iter_adj)
# 3D Baseline
if configs['method'] == '3d_baseline':
objects[obj_id]['q_obj_descs'] = torch.mean(iter_obj_descs, dim=0, keepdim=True)
# 2D Baseline
else:
objects[obj_id]['q_obj_descs'] = iter_obj_descs
elif configs['method'] in ['netvlad', 'seqnet', 'seqnet_1']:
iter_obj_descs = netvlad_model(iter_descs)
# SeqNet
if configs['method'] == 'seqnet':
objects[obj_id]['q_obj_descs'] = seqnet_model.module.pool(iter_obj_descs.detach().clone().unsqueeze(0))
# SeqNet (s_l = 1)
elif configs['method'] == 'seqnet_1':
evol_descs = []
for k in range(iter_obj_descs.shape[0]):
evol_features = iter_obj_descs[k].detach().clone()
evol_descs.append(seqnet_model.module.pool(evol_features.unsqueeze(0)))
objects[obj_id]['q_obj_descs'] = torch.cat(evol_descs)
# NetVLAD
else:
objects[obj_id]['q_obj_descs'] = iter_obj_descs
elif configs['method'] in ['airobj_1']:
# AirObject (s_l = 1)
evol_descs = []
for k in range(len(iter_points)):
evol_descs.append(airobj_model([iter_points[k]], [iter_descs[k]], [iter_adj[k]]))
objects[obj_id]['q_obj_descs'] = torch.cat(evol_descs)
elif configs['method'] in ['airobj']:
# AirObject
objects[obj_id]['q_obj_descs'] = airobj_model(iter_points, iter_descs, iter_adj)
# Reference
iter_points, iter_descs, iter_adj = [], [], []
for l in range(split, vid_obj_length):
iter_points.append(objects[obj_id]['seq_points'][l].detach().clone())
iter_descs.append(objects[obj_id]['seq_descs'][l].detach().clone())
iter_adj.append(objects[obj_id]['seq_adjs'][l].detach().clone())
if configs['method'] in ['2d_baseline', '3d_baseline']:
iter_obj_descs, iter_locs = gcn_model(iter_points, iter_descs, iter_adj)
# 3D Baseline
if configs['method'] == '3d_baseline':
objects[obj_id]['ref_obj_descs'] = torch.mean(iter_obj_descs, dim=0, keepdim=True)
# 2D Baseline
else:
objects[obj_id]['ref_obj_descs'] = iter_obj_descs
elif configs['method'] in ['netvlad', 'seqnet', 'seqnet_1']:
iter_obj_descs = netvlad_model(iter_descs)
# SeqNet
if configs['method'] == 'seqnet':
objects[obj_id]['ref_obj_descs'] = seqnet_model.module.pool(iter_obj_descs.detach().clone().unsqueeze(0))
# SeqNet (s_l = 1)
elif configs['method'] == 'seqnet_1':
evol_descs = []
for k in range(iter_obj_descs.shape[0]):
evol_features = iter_obj_descs[k].detach().clone()
evol_descs.append(seqnet_model.module.pool(evol_features.unsqueeze(0)))
objects[obj_id]['ref_obj_descs'] = torch.cat(evol_descs)
# NetVLAD
else:
objects[obj_id]['ref_obj_descs'] = iter_obj_descs
elif configs['method'] in ['airobj_1']:
# AirObject (s_l = 1)
evol_descs = []
for k in range(len(iter_points)):
evol_descs.append(airobj_model([iter_points[k]], [iter_descs[k]], [iter_adj[k]]))
objects[obj_id]['ref_obj_descs'] = torch.cat(evol_descs)
elif configs['method'] in ['airobj']:
# AirObject
objects[obj_id]['ref_obj_descs'] = airobj_model(iter_points, iter_descs, iter_adj)
video_objects[video] = objects
thrs = [float(i)/50 for i in range(51)]
pr_curve = []
for thr in tqdm(thrs):
pr_numbers = []
for video in video_objects.keys():
objects = video_objects[video]
q_batch_descs, ref_batch_descs = [], []
batch_obj_ids, q_num_objs, ref_num_objs = [], [], []
for obj_id in objects.keys():
if 'q_obj_descs' not in objects[obj_id].keys():
continue
q_batch_descs.append(objects[obj_id]['q_obj_descs'].detach().clone())
ref_batch_descs.append(objects[obj_id]['ref_obj_descs'].detach().clone())
q_num_objs.append(objects[obj_id]['q_obj_descs'].shape[0])
ref_num_objs.append(objects[obj_id]['ref_obj_descs'].shape[0])
batch_obj_ids.append(int(obj_id))
if len(q_batch_descs)==0:
continue
q_batch_descs = torch.cat(q_batch_descs, 0)
ref_batch_descs = torch.cat(ref_batch_descs, 0)
q_batch_obj_ids = torch.repeat_interleave(torch.tensor(batch_obj_ids), torch.tensor(q_num_objs)).unsqueeze(-1)
ref_batch_obj_ids = torch.repeat_interleave(torch.tensor(batch_obj_ids), torch.tensor(ref_num_objs)).unsqueeze(-1)
connections = torch.eq(q_batch_obj_ids, ref_batch_obj_ids.t())
distances = torch.matmul(q_batch_descs, ref_batch_descs.t())
match_matrix = (np.around(distances.cpu(), 4) > thr).float()
tp = torch.sum(match_matrix * connections.cpu())
match_num = torch.sum(match_matrix).item()
gt_num = torch.sum(connections).item()
pr_number = [tp, match_num, gt_num]
pr_numbers.append(pr_number)
pr_numbers = torch.tensor(pr_numbers)
pr_numbers = torch.sum(pr_numbers, 0)
TP, MatchNum, GTNum = pr_numbers.cpu().numpy().tolist()
precision = TP / MatchNum if MatchNum > 0 else 1
recall = TP / GTNum if GTNum > 0 else 1
pr_curve.append([precision, recall])
area = get_pr_curve_area(pr_curve)
print('PR-AUC(%): {:.2f}'.format(area*100))
results = {}
results['pr_curve'] = pr_curve
results['area'] = area
os.makedirs(configs['save_dir'], exist_ok=True)
pickle_write(os.path.join(configs['save_dir'], configs['method']+'_pr_curve.pkl'), results)
def main():
parser = argparse.ArgumentParser(description="Evaluation")
parser.add_argument(
"-c", "--config_file",
dest = "config_file",
type = str,
default = ""
)
parser.add_argument(
"-g", "--gpu",
dest = "gpu",
type = int,
default = 1
)
args = parser.parse_args()
config_file = args.config_file
f = open(config_file, 'r', encoding='utf-8')
configs = f.read()
configs = yaml.safe_load(configs)
configs['use_gpu'] = args.gpu
eval(configs)
if __name__ == "__main__":
main()