From c9a9b64fc93dfe616065fb4e0b70c3a44d27d141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20De=20Lillo?= Date: Mon, 23 Jul 2018 15:10:20 +0200 Subject: [PATCH] [nodes] `ImageMatchingMultiSfM` Update `matchingMode` options --- meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py b/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py index 6b95ee92..912088e9 100644 --- a/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py +++ b/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py @@ -52,10 +52,10 @@ class ImageMatchingMultiSfM(desc.CommandLineNode): ), desc.ChoiceParam( name='matchingMode', - label='Multiple SfM mode', - description='Image matching multiple SfM mode.\n"a+ab" for image matching of images in SfMData A plus image matching between images of A and B.\n"aab" for image matching of images in SfMData A and between images of A and B.\n"ab" for image matching images of SfMData A and B.', - value='a+ab', - values=['a+ab','aab', 'ab'], + label='Matching Mode', + description='The mode to combine image matching between the input SfMData A and B:\n"a/a+a/b" for A with A + A with B.\n"a/ab" for A with A and B.\n"a/b" for A with B.', + value='a/a+a/b', + values=['a/a+a/b','a/ab', 'a/b'], exclusive=True, uid=[0], ),