Always use matcher-neighbors if less than 2 pictures

pull/1694/head
Piero Toffanin 2023-09-06 10:09:14 -04:00
rodzic ebba01aad5
commit 8276751d07
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -227,6 +227,11 @@ class OSFMContext:
else:
matcher_graph_rounds = 50
matcher_neighbors = 0
# Always use matcher-neighbors if less than 2 pictures
if len(photos) <= 2:
matcher_graph_rounds = 0
matcher_neighbors = 2
config = [
"use_exif_size: no",