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")),