From d2cd5d9336e711b97e2fb5cd496ac0ca99ba50de Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Wed, 6 Sep 2023 10:13:36 -0400 Subject: [PATCH] 2 --> 3 --- opendm/osfm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opendm/osfm.py b/opendm/osfm.py index 90a409f1..509addc1 100644 --- a/opendm/osfm.py +++ b/opendm/osfm.py @@ -228,10 +228,10 @@ class OSFMContext: matcher_graph_rounds = 50 matcher_neighbors = 0 - # Always use matcher-neighbors if less than 2 pictures - if len(photos) <= 2: + # Always use matcher-neighbors if less than 4 pictures + if len(photos) <= 3: matcher_graph_rounds = 0 - matcher_neighbors = 2 + matcher_neighbors = 3 config = [ "use_exif_size: no",