From 0f86eca4a67a409c644005b74ce4c78760de9461 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Wed, 18 Dec 2019 15:29:33 -0500 Subject: [PATCH] Path fix Former-commit-id: 706c9ef18ba2e82843c4dc6fc52f59ed9f4111d0 --- opendm/types.py | 2 +- run.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opendm/types.py b/opendm/types.py index 3baeae04..012704ea 100644 --- a/opendm/types.py +++ b/opendm/types.py @@ -315,7 +315,7 @@ class ODM_Tree(object): self.odm_texturing = io.join_paths(self.root_path, 'odm_texturing') self.odm_25dtexturing = io.join_paths(self.root_path, 'odm_texturing_25d') self.odm_georeferencing = io.join_paths(self.root_path, 'odm_georeferencing') - self.odm_25dgeoreferencing = io.join_paths(self.root_path, 'odm_25dgeoreferencing') + self.odm_25dgeoreferencing = io.join_paths(self.root_path, 'odm_georeferencing_25d') self.odm_filterpoints = io.join_paths(self.root_path, 'odm_filterpoints') self.odm_orthophoto = io.join_paths(self.root_path, 'odm_orthophoto') diff --git a/run.py b/run.py index ed15005a..28a11104 100755 --- a/run.py +++ b/run.py @@ -41,13 +41,13 @@ if __name__ == '__main__': os.system("rm -rf " + " ".join([ quote(os.path.join(args.project_path, "odm_georeferencing")), + quote(os.path.join(args.project_path, "odm_georeferencing_25d")), quote(os.path.join(args.project_path, "odm_meshing")), quote(os.path.join(args.project_path, "odm_orthophoto")), quote(os.path.join(args.project_path, "odm_texturing")), quote(os.path.join(args.project_path, "opensfm")), quote(os.path.join(args.project_path, "odm_filterpoints")), - quote(os.path.join(args.project_path, "odm_25dmeshing")), - quote(os.path.join(args.project_path, "odm_25dtexturing")), + quote(os.path.join(args.project_path, "odm_texturing_25d")), quote(os.path.join(args.project_path, "mve")), quote(os.path.join(args.project_path, "entwine_pointcloud")), quote(os.path.join(args.project_path, "submodels")),