mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-10 23:01:59 +02:00
[nodes] FeatureMatching: add H Growing
This commit is contained in:
parent
92fc8bfedc
commit
d892a5c54f
1 changed files with 7 additions and 2 deletions
|
@ -20,9 +20,14 @@ class FeatureMatching(desc.CommandLineNode):
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='geometricModel',
|
name='geometricModel',
|
||||||
label='Geometric Model',
|
label='Geometric Model',
|
||||||
description='''Pairwise correspondences filtering thanks to robust model estimation: * f: fundamental matrix * e: essential matrix * h: homography matrix''',
|
description='Geometric validation method to filter features matches:\n'
|
||||||
|
' * f: fundamental matrix\n'
|
||||||
|
' * e: essential matrix\n'
|
||||||
|
' * h: homography matrix\n'
|
||||||
|
' * hg: homography growing\n'
|
||||||
|
' * none: no geometric filtering',
|
||||||
value='f',
|
value='f',
|
||||||
values=['f', 'e', 'h'],
|
values=['f', 'e', 'h', 'hg', 'none'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue