Skip to content

Commit

Permalink
[nodes] StructureFromMotion: allow negative bundleAdjustmentMaxOutlie…
Browse files Browse the repository at this point in the history
…rs to disable BA iterations
  • Loading branch information
mugulmd committed May 17, 2023
1 parent 6b8b373 commit 5baac53
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions meshroom/nodes/aliceVision/StructureFromMotion.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,11 @@ class StructureFromMotion(desc.AVCommandLineNode):
),
desc.IntParam(
name='bundleAdjustmentMaxOutliers',
label='Bundle Adjustment Maximum Outliers',
description='Threshold for the maximum number of outliers allowed at the end of a bundle adjustment iteration.',
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=(0, 1000, 1),
range=(-1, 1000, 1),
uid=[0],
advanced=True
),
Expand Down

0 comments on commit 5baac53

Please sign in to comment.