Skip to content
Snippets Groups Projects
Commit d89388d9 authored by manurare's avatar manurare
Browse files

Process single column txt file

parent 7b81bc47
No related branches found
No related tags found
No related merge requests found
...@@ -458,7 +458,10 @@ def monodepth_360(opt): ...@@ -458,7 +458,10 @@ def monodepth_360(opt):
line = line.splitlines()[0].split(" ") line = line.splitlines()[0].split(" ")
erp_image_filename = line[0] erp_image_filename = line[0]
if len(line) > 1:
erp_gtdepth_filename = line[1] if line[1] != 'None' else "" erp_gtdepth_filename = line[1] if line[1] != 'None' else ""
else:
erp_gtdepth_filename = ""
if "matterport" in erp_image_filename: if "matterport" in erp_image_filename:
opt.dataset_matterport_hexagon_mask_enable = True opt.dataset_matterport_hexagon_mask_enable = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment