mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 21:16:29 +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,
|
exclusive=True,
|
||||||
uid=[],
|
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(
|
desc.IntParam(
|
||||||
name='minInputTrackLength',
|
name='minInputTrackLength',
|
||||||
label='Min Input Track Length',
|
label='Min Input Track Length',
|
||||||
|
@ -58,6 +66,14 @@ class StructureFromMotion(desc.CommandLineNode):
|
||||||
range=(2, 10, 1),
|
range=(2, 10, 1),
|
||||||
uid=[0],
|
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(
|
desc.ChoiceParam(
|
||||||
name='cameraModel',
|
name='cameraModel',
|
||||||
label='Camera Model',
|
label='Camera Model',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue