Skip to content

Commit

Permalink
Merge pull request #2014 from alicevision/mug/exposeNbOutliersThreshold
Browse files Browse the repository at this point in the history
[nodes] StructureFromMotion: new nbOutliersThreshold attribute
  • Loading branch information
cbentejac authored May 23, 2023
2 parents b547a76 + 5baac53 commit c1012ba
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion meshroom/nodes/aliceVision/StructureFromMotion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0"
__version__ = "3.1"

from meshroom.core import desc

Expand Down Expand Up @@ -190,6 +190,16 @@ class StructureFromMotion(desc.AVCommandLineNode):
uid=[0],
advanced=True
),
desc.IntParam(
name='bundleAdjustmentMaxOutliers',
label='Max Nb of Outliers after BA',
description='Threshold for the maximum number of outliers allowed at the end of a bundle adjustment iteration.\n'
'Using a negative value for this threshold will disable BA iterations.',
value=50,
range=(-1, 1000, 1),
uid=[0],
advanced=True
),
desc.IntParam(
name='maxNumberOfMatches',
label='Maximum Number of Matches',
Expand Down

0 comments on commit c1012ba

Please sign in to comment.