mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-03 11:21:52 +02:00
[nodes] ImageMatching: add minNbImages parameter
This commit is contained in:
parent
6e270ad6a9
commit
daebef92f1
1 changed files with 7 additions and 0 deletions
|
@ -34,6 +34,13 @@ class ImageMatching(desc.CommandLineNode):
|
|||
uid=[],
|
||||
isOutput=True,
|
||||
)
|
||||
minNbImages = desc.IntParam(
|
||||
label='Minimal Number of Images',
|
||||
description='''Minimal number of images to use the vocabulary tree. If we have less features than this threshold, we will compute all matching combinations.''',
|
||||
value=200,
|
||||
range=(0, 500, 1),
|
||||
uid=[0],
|
||||
)
|
||||
maxDescriptors = desc.IntParam(
|
||||
label='Max Descriptors',
|
||||
description='''Limit the number of descriptors you load per image. Zero means no limit.''',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue