-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_keypoints.py
67 lines (54 loc) · 2.18 KB
/
test_keypoints.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
from pathlib import Path
import cv2
import numpy as np
import torch
import torchvision
from PIL import Image
from scipy.spatial.transform import Rotation
from torch.utils.data import Dataset
import pandas as pd
from tqdm import tqdm
import cv2
import os
import yaml
import shutil
if __name__=="__main__":
tumvi_dir = Path("../../tumvi-dataset/rectified/")
sequences = os.listdir(tumvi_dir)
sequences.sort()
for seq in sequences:
depth_dir = tumvi_dir / f"{seq}/basalt_keyframe_data/keypoints/"
depth_viz_dir = tumvi_dir / f"{seq}/basalt_keyframe_data/keypoints_viz/"
image_dir = tumvi_dir / f"{seq}/mav0/cam0/data/"
save_dir = tumvi_dir / f"{seq}/debug_depth/"
if(os.path.isdir(save_dir)):
shutil.rmtree(save_dir)
os.mkdir(save_dir)
depth_paths = os.listdir(depth_dir)
target_image_size = (512, 512)
depth_map = {}
times = [tns.replace(".txt", "") for tns in depth_paths]
for tns in times:
depth_map[tns] = str(depth_viz_dir / f"{tns}.txt")
assert os.path.exists(depth_map[tns])
times.sort()
for tns in tqdm(times):
depth = torch.zeros(1, target_image_size[0], target_image_size[1], dtype=torch.float32)
img = cv2.imread(str(image_dir / f"{tns}.png"))
with open(depth_map[tns], "r") as f:
lines = f.readlines()
points_sz = int(lines[0])
for l in lines[1:]:
tmp = l.split()
try:
x, y, i_depth = round(float(tmp[0])), round(float(tmp[1])), float(tmp[2])
except:
print(f"Error in reading text file: {seq} {tns} {x} {y}\n{tmp[0]} {tmp[1]} {tmp[2]}")
continue
if not (y>=0 and y<=511 and x>=0 and x<=511 and i_depth>=0):
print(f"Error in dimensions:\n{seq} {tns} {x} {y} {i_depth}")
else:
depth[0][y][x] = i_depth
img = cv2.circle(img, (x, y), 4, (0, 0, 255), 1)
cv2.imwrite(str(save_dir / f"{tns}.png"), img)
# break