[nodes] StructureFromMotion: Add option minNumberOfMatches

This commit is contained in:
Theo 2020-01-23 12:25:21 +01:00
parent bc877616e2
commit b075945266

View file

@ -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',