Skip to content

Commit

Permalink
[nodes] StructureFromMotion: new nbOutliersThreshold attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
mugulmd committed May 17, 2023
1 parent b547a76 commit e835839
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 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,15 @@ class StructureFromMotion(desc.AVCommandLineNode):
uid=[0],
advanced=True
),
desc.IntParam(
name='nbOutliersThreshold',
label='Nb Outliers Threshold',
description='Threshold for the maximum number of outliers allowed at the end of a bundle adjustment iteration.',
value=50,
range=(0, 1000, 1),
uid=[0],
advanced=True
),
desc.IntParam(
name='maxNumberOfMatches',
label='Maximum Number of Matches',
Expand Down

0 comments on commit e835839

Please sign in to comment.