-
Notifications
You must be signed in to change notification settings - Fork 42
/
export_descriptors.py
59 lines (46 loc) · 2.11 KB
/
export_descriptors.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
import os
import yaml
import torch
import numpy as np
from tqdm import tqdm
from torch.utils.data import DataLoader
from dataset.patch import PatchesDataset
from model.superpoint_bn import SuperPointBNNet
from utils.archive import *
import time
import shutil
if __name__ == '__main__':
with open('./config/export_descriptors.yaml', 'r', encoding='utf8') as fin:
config = yaml.safe_load(fin)
output_dir = config['data']['export_dir']
if os.path.exists(output_dir):
shutil.rmtree(output_dir)
print('rm dir:{}'.format(output_dir))
os.makedirs(output_dir)
device = 'cuda:2' if torch.cuda.is_available() else 'cpu'
p_dataset = PatchesDataset(config['data'], device=device)
p_dataloader = DataLoader(p_dataset, batch_size=1, shuffle=False, collate_fn=p_dataset.batch_collator)
net = SuperPointBNNet(config['model'], device=device, using_bn=config['model']['using_bn'])
net.load_state_dict(torch.load(config['model']['pretrained_model'],map_location=device))
net.to(device).eval()
with torch.no_grad():
for i, data in tqdm(enumerate(p_dataloader)):
pred1 = net(data['img'])
pred2 = net(data['warp_img'])
pred = {'prob': pred1['det_info']['prob_nms'],
'warped_prob': pred2['det_info']['prob_nms'],
'desc': pred1['desc_info']['desc'],
'warped_desc': pred2['desc_info']['desc'],
'homography': data['homography']}
if not ('name' in data):
pred.update(data)
# to numpy
pred = {k: v.detach().cpu().numpy().squeeze() for k, v in pred.items()}
pred = {k: np.transpose(v,(1,2,0)) if k=='warped_desc' or k=='desc' else v for k, v in pred.items()}
filename = data['name'] if 'name' in data else str(i)
print('number of keypoints {}'.format(len(np.where(pred['prob']>0)[0])))
filepath = os.path.join(output_dir, '{}.bin'.format(filename))
pickle_save(filepath, pred)
time.sleep(1)
#np.savez_compressed(filepath, **pred)
print('Done')