Merge pull request #1695 from pierotofy/matcherfix

Fix minimum number of pictures for matcher neighbors
pull/1696/head
Piero Toffanin 2023-09-06 10:15:27 -04:00 zatwierdzone przez GitHub
commit 07b641dc09
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

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