mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 21:16:29 +02:00
[nodes] ImageMatching: use method SequentialAndVocTree by default
This commit is contained in:
parent
e330201077
commit
8cf9dae33f
1 changed files with 3 additions and 3 deletions
|
@ -65,7 +65,7 @@ If images have known poses, use frustum intersection else use VocabularuTree.
|
|||
' * Exhaustive: Export all image pairs.\n'
|
||||
' * Frustum: If images have known poses, computes the intersection between cameras frustums to create the list of image pairs.\n'
|
||||
' * FrustumOrVocabularyTree: If images have known poses, use frustum intersection else use VocabularyTree.\n',
|
||||
value='VocabularyTree',
|
||||
value='SequentialAndVocabularyTree',
|
||||
values=['VocabularyTree', 'Sequential', 'SequentialAndVocabularyTree', 'Exhaustive', 'Frustum', 'FrustumOrVocabularyTree'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
|
@ -111,7 +111,7 @@ If images have known poses, use frustum intersection else use VocabularuTree.
|
|||
name='nbMatches',
|
||||
label='Voc Tree: Nb Matches',
|
||||
description='The number of matches to retrieve for each image (If 0 it will retrieve all the matches).',
|
||||
value=50,
|
||||
value=40,
|
||||
range=(0, 1000, 1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
|
@ -121,7 +121,7 @@ If images have known poses, use frustum intersection else use VocabularuTree.
|
|||
name='nbNeighbors',
|
||||
label='Sequential: Nb Neighbors',
|
||||
description='The number of neighbors to retrieve for each image (If 0 it will retrieve all the neighbors).',
|
||||
value=50,
|
||||
value=5,
|
||||
range=(0, 1000, 1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue