Skip to content

Commit

Permalink
[nodes] StructureFromMotion: Add option minNumberOfMatches
Browse files Browse the repository at this point in the history
  • Loading branch information
Theo committed Jan 23, 2020
1 parent 1766934 commit 640e77e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions meshroom/nodes/aliceVision/StructureFromMotion.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,15 @@ class StructureFromMotion(desc.CommandLineNode):
range=(0, 50000, 1),
uid=[0],
),
desc.IntParam(
name='minNumberOfMatches',
label='Minimum Number of Matches',
description='Minimum number of matches per image pair (and per feature type). \n'
'This can be useful to have a meaningful reconstruction with accurate keypoints. 0 means no limit.',
value=0,
range=(0, 50000, 1),
uid=[0],
),
desc.IntParam(
name='minInputTrackLength',
label='Min Input Track Length',
Expand Down

0 comments on commit 640e77e

Please sign in to comment.