-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy_files.py
90 lines (74 loc) · 3.4 KB
/
copy_files.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
import numpy as np
import shutil
import os
from pathlib import Path
from tqdm import tqdm
resources_path = 'panoptic-reconstruction/resources/front3d/train_list_3d.txt'
new_resources_path = 'panoptic-reconstruction/resources/front3d/train_list_3d_new2.txt'
data_path = '/media/jdgalviss/JDG/TUM/front3d-full/front3d-full/'
new_data_path = 'front-3d/'
resources = open(resources_path, 'r').readlines()
total_length = len(resources)
new_lines=[]
count = 0
total_samples = 25000
for idx, sample in tqdm(enumerate(resources), total=total_length):
if count <= total_samples:
scene_id = sample.split('/')[0]
id = sample.split('/')[1].replace('\n', '')
# read viewlist
# print(data_path + scene_id + f"/viewlist_{id}.txt")
try:
viewlist = open(data_path + scene_id + f"/viewlist_{id}.txt", 'r').readlines()
viewlist_length = len(viewlist)
except:
continue
if viewlist_length > 2:
new_lines.append(sample.replace('\n', ''))
output_path = Path(new_data_path + scene_id)
output_path.mkdir(exist_ok=True, parents=True)
#camposes
file_orig = data_path + scene_id + f"/campose_{id}.npz"
file_dest = new_data_path + scene_id + f"/campose_{id}.npz"
shutil.copyfile(file_orig,file_dest)
#depth
file_orig = data_path + scene_id + f"/depth_{id}.exr"
file_dest = new_data_path + scene_id + f"/depth_{id}.exr"
shutil.copyfile(file_orig,file_dest)
#geometry
file_orig = data_path + scene_id + f"/geometry_{id}.npz"
file_dest = new_data_path + scene_id + f"/geometry_{id}.npz"
shutil.copyfile(file_orig,file_dest)
#rgb
file_orig = data_path + scene_id + f"/rgb_{id}.png"
file_dest = new_data_path + scene_id + f"/rgb_{id}.png"
shutil.copyfile(file_orig,file_dest)
#segmentation
file_orig = data_path + scene_id + f"/segmentation_{id}.mapped.npz"
file_dest = new_data_path + scene_id + f"/segmentation_{id}.mapped.npz"
shutil.copyfile(file_orig,file_dest)
file_orig = data_path + scene_id + f"/segmap_{id}.mapped.npz"
file_dest = new_data_path + scene_id + f"/segmap_{id}.mapped.npz"
shutil.copyfile(file_orig,file_dest)
#viewlist
file_orig = data_path + scene_id + f"/viewlist_{id}.txt"
file_dest = new_data_path + scene_id + f"/viewlist_{id}.txt"
shutil.copyfile(file_orig,file_dest)
#weighting
file_orig = data_path + scene_id + f"/weighting_{id}.npz"
file_dest = new_data_path + scene_id + f"/weighting_{id}.npz"
shutil.copyfile(file_orig,file_dest)
#copy images
for view in viewlist:
view = view.replace('\n', '')
file_orig = data_path + scene_id + f"/rgb_{view}.png"
file_dest = new_data_path + scene_id + f"/rgb_{view}.png"
shutil.copyfile(file_orig,file_dest)
file_orig = data_path + scene_id + f"/campose_{view}.npz"
file_dest = new_data_path + scene_id + f"/campose_{view}.npz"
shutil.copyfile(file_orig,file_dest)
count += 1
else:
break
with open(new_resources_path, 'w') as fp:
fp.write('\n'.join(new_lines))