Skip to content

Commit

Permalink
Merge pull request #931 from alicevision/dev_f10
Browse files Browse the repository at this point in the history
[nodes] `FeatureMatching` Add `fundamental_with_distortion` option
  • Loading branch information
simogasp authored Jun 8, 2020
2 parents c1eae7c + a41a4e1 commit fe1bd53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meshroom/nodes/aliceVision/FeatureMatching.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,13 @@ class FeatureMatching(desc.CommandLineNode):
label='Geometric Filter Type',
description='Geometric validation method to filter features matches: \n'
' * fundamental_matrix\n'
' * fundamental_with_distortion\n'
' * essential_matrix\n'
' * homography_matrix\n'
' * homography_growing\n'
' * no_filtering',
value='fundamental_matrix',
values=['fundamental_matrix', 'essential_matrix', 'homography_matrix', 'homography_growing', 'no_filtering'],
values=['fundamental_matrix', 'fundamental_with_distortion', 'essential_matrix', 'homography_matrix', 'homography_growing', 'no_filtering'],
exclusive=True,
uid=[0],
advanced=True,
Expand Down

0 comments on commit fe1bd53

Please sign in to comment.