From 8121fca6076dd568774449ee365547ba8185bc44 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Wed, 5 Jul 2023 16:19:15 +0200 Subject: [PATCH] Increase auto-boundary distance factor --- stages/odm_filterpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/odm_filterpoints.py b/stages/odm_filterpoints.py index 73db2655a..dac7c3f13 100644 --- a/stages/odm_filterpoints.py +++ b/stages/odm_filterpoints.py @@ -36,7 +36,7 @@ def process(self, args, outputs): else: avg_gsd = gsd.opensfm_reconstruction_average_gsd(tree.opensfm_reconstruction) if avg_gsd is not None: - boundary_distance = avg_gsd * 20 # 20 is arbitrary + boundary_distance = avg_gsd * 100 # 100 is arbitrary if boundary_distance is not None: outputs['boundary'] = compute_boundary_from_shots(tree.opensfm_reconstruction, boundary_distance, reconstruction.get_proj_offset())