From a41a4e1fdb6dd544ac7ff21aa1d408443009585c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20De=20Lillo?= Date: Tue, 7 May 2019 15:08:40 +0200 Subject: [PATCH] [nodes] `FeatureMatching` Add `fundamental_with_distortion` option --- meshroom/nodes/aliceVision/FeatureMatching.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meshroom/nodes/aliceVision/FeatureMatching.py b/meshroom/nodes/aliceVision/FeatureMatching.py index 43f1e21608..d214f29537 100644 --- a/meshroom/nodes/aliceVision/FeatureMatching.py +++ b/meshroom/nodes/aliceVision/FeatureMatching.py @@ -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,