forked from lppllppl920/DenseDescriptorLearning-Pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
colmap_sparse_reconstruction.py
42 lines (34 loc) · 1.77 KB
/
colmap_sparse_reconstruction.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
'''
Author: Xingtong Liu, Yiping Zheng, Benjamin Killeen, Masaru Ishii, Gregory D. Hager, Russell H. Taylor, and Mathias Unberath
Copyright (C) 2020 Johns Hopkins University - All Rights Reserved
You may use, distribute and modify this code under the
terms of the GNU GENERAL PUBLIC LICENSE Version 3 license for non-commercial usage.
You should have received a copy of the GNU GENERAL PUBLIC LICENSE Version 3 license with
this file. If not, please write to: [email protected] or [email protected]
'''
import os
import argparse
from pathlib import Path
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Dense Descriptor Learning -- sparse reconstruction using COLMAP',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("--colmap_exe_path", type=str, required=True)
parser.add_argument("--sequence_root", type=str, required=True, help='root of video sequence')
parser.add_argument("--overwrite_reconstruction", action="store_true")
args = parser.parse_args()
colmap_exe_path = args.colmap_exe_path
sequence_root = Path(args.sequence_root)
database_path = sequence_root / "database.db"
image_root = sequence_root / "images"
output_root = sequence_root / "colmap"
overwrite_reconstruction = args.overwrite_reconstruction
if not overwrite_reconstruction:
item = list(output_root.glob("*"))
if output_root.exists() and len(item) > 0:
print("ERROR: reconstruction exists already")
exit()
if not output_root.exists():
output_root.mkdir(parents=True)
os.system(
"{} mapper --database_path \"{}\" --image_path \"{}\" --output_path \"{}\"".format(
colmap_exe_path, database_path, image_root, str(output_root)))