mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 02:42:05 +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],
|
uid=[0],
|
||||||
advanced=True,
|
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(
|
desc.IntParam(
|
||||||
name='localizerEstimatorMaxIterations',
|
name='localizerEstimatorMaxIterations',
|
||||||
label='Localizer Max Ransac Iterations',
|
label='Localizer Max Ransac Iterations',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue