Merge pull request #1651 from rexliuser/master

add opensfm arg: matching_order_neighbors
order
Piero Toffanin 2023-05-19 15:17:10 -04:00 zatwierdzone przez GitHub
commit afce0007ed
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -153,6 +153,13 @@ def config(argv=None, parser=None):
default=0,
type=int,
help='Perform image matching with the nearest images based on GPS exif data. Set to 0 to match by triangulation. Default: %(default)s')
parser.add_argument('--matcher-order-neighbors',
metavar='<positive integer>',
action=StoreValue,
default=0,
type=int,
help='Perform image matching with the nearest images based on image order. Set to 0 to disable. Default: %(default)s')
parser.add_argument('--use-fixed-camera-params',
action=StoreTrue,

Wyświetl plik

@ -246,6 +246,9 @@ class OSFMContext:
"triangulation_type: ROBUST",
"retriangulation_ratio: 2",
]
if args.matcher_order_neighbors > 0:
config.append(f"matching_order_neighbors: {args.matcher_order_neighbors}")
if args.camera_lens != 'auto':
config.append("camera_projection_type: %s" % args.camera_lens.upper())