Skip to content

Commit

Permalink
[nodes] StructureFromMotion: Add new observation constraint mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Theo authored and fabiencastan committed Mar 19, 2020
1 parent 9fe8d2b commit d6c0c59
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions meshroom/nodes/aliceVision/StructureFromMotion.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit d6c0c59

Please sign in to comment.