mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-30 01:16:33 +02:00
[nodes] StructureFromMotion: Add new observation constraint mode
This commit is contained in:
parent
9fe8d2b850
commit
d6c0c595b9
1 changed files with 12 additions and 0 deletions
|
@ -62,6 +62,18 @@ class StructureFromMotion(desc.CommandLineNode):
|
|||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='observationConstraint',
|
||||
label='Observation Constraint',
|
||||
description='Observation contraint mode used in the optimization:\n'
|
||||
' * Basic: Use standard reprojection error in pixel coordinates\n'
|
||||
' * Scale: Use reprojection error in pixel coordinates but relative to the feature scale',
|
||||
value='Basic',
|
||||
values=['Basic', 'Scale'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name='localizerEstimatorMaxIterations',
|
||||
label='Localizer Max Ransac Iterations',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue