[nodes] Update node ImageMatchingMultiSfM

This commit is contained in:
Grégoire De Lillo 2018-07-20 12:29:22 +02:00
parent 2eb2c3ac6f
commit e4df8cc6b0

View file

@ -51,11 +51,11 @@ class ImageMatchingMultiSfM(desc.CommandLineNode):
uid=[0], uid=[0],
), ),
desc.ChoiceParam( desc.ChoiceParam(
name='modeMultiSfM', name='matchingMode',
label='Multiple SfM mode', label='Multiple SfM mode',
description='Image matching multiple SfM mode.\n"a_ab" for images in input SfMData A plus between A and B.\n"a_b" for images between input SfMData A and B.', 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', value='a+ab',
values=['a_ab', 'a_b'], values=['a+ab','aab', 'ab'],
exclusive=True, exclusive=True,
uid=[0], uid=[0],
), ),