From 365549f51a825a2ffcfdc42ece0087cfbd91d3bf Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Wed, 4 Aug 2021 17:59:38 -0400 Subject: [PATCH] Fix EXIF error while using GCPs --- stages/run_opensfm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/run_opensfm.py b/stages/run_opensfm.py index 25f32564..7aa8411f 100644 --- a/stages/run_opensfm.py +++ b/stages/run_opensfm.py @@ -40,7 +40,7 @@ class ODMOpenSfMStage(types.ODM_Stage): def cleanup_disk_space(): if args.optimize_disk_space: - for folder in ["features", "matches", "exif", "reports"]: + for folder in ["features", "matches", "reports"]: folder_path = octx.path(folder) if os.path.exists(folder_path): if os.path.islink(folder_path):