mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 13:06:28 +02:00
[nodes] SfM: add new parameters localBA and maxNumberOfMatches
This commit is contained in:
parent
0bb05e99e7
commit
5e17b12df1
1 changed files with 16 additions and 0 deletions
|
@ -50,6 +50,14 @@ class StructureFromMotion(desc.CommandLineNode):
|
|||
exclusive=True,
|
||||
uid=[],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='useLocalBA',
|
||||
label='Local Bundle Adjustment',
|
||||
description='It reduces the reconstruction time, especially for large datasets (500+ images), '
|
||||
'by avoiding computation of the Bundle Adjustment on areas that are not changing.',
|
||||
value=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='minInputTrackLength',
|
||||
label='Min Input Track Length',
|
||||
|
@ -58,6 +66,14 @@ class StructureFromMotion(desc.CommandLineNode):
|
|||
range=(2, 10, 1),
|
||||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='maxNumberOfMatches',
|
||||
label='Maximum Number of Matches',
|
||||
description='Maximum number of matches per image pair (and per feature type). This can be useful to have a quick reconstruction overview. 0 means no limit.',
|
||||
value=0,
|
||||
range=(0, 50000, 1),
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='cameraModel',
|
||||
label='Camera Model',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue