[nodes] Use lower case for imageDescriber type and preset

This commit is contained in:
Grégoire De Lillo 2018-06-06 11:59:23 +02:00 committed by Yann Lanthony
parent 236a82ece8
commit 50f01c4222
7 changed files with 29 additions and 33 deletions

View file

@ -39,8 +39,8 @@ class CameraLocalization(desc.CommandLineNode):
name='matchDescTypes', name='matchDescTypes',
label='Match Desc Types', label='Match Desc Types',
description='''Describer types to use for the matching.''', description='''Describer types to use for the matching.''',
value=['SIFT'], value=['sift'],
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', 'AKAZE_OCV'], values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
exclusive=False, exclusive=False,
uid=[0], uid=[0],
joinChar=',', joinChar=',',
@ -48,9 +48,9 @@ class CameraLocalization(desc.CommandLineNode):
desc.ChoiceParam( desc.ChoiceParam(
name='preset', name='preset',
label='Preset', label='Preset',
description='''Preset for the feature extractor when localizing a new image {LOW,MEDIUM,NORMAL,HIGH,ULTRA}''', description='''Preset for the feature extractor when localizing a new image (low, medium, normal, high, ultra)''',
value='NORMAL', value='normal',
values=['LOW', 'MEDIUM', 'NORMAL', 'HIGH', 'ULTRA'], values=['low', 'medium', 'normal', 'high', 'ultra'],
exclusive=True, exclusive=True,
uid=[0], uid=[0],
), ),

View file

@ -46,9 +46,8 @@ class CameraRigCalibration(desc.CommandLineNode):
name='matchDescTypes', name='matchDescTypes',
label='Match Describer Types', label='Match Describer Types',
description='''The describer types to use for the matching''', description='''The describer types to use for the matching''',
value=['SIFT'], value=['sift'],
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
'AKAZE_OCV'],
exclusive=False, exclusive=False,
uid=[0], uid=[0],
joinChar=',', joinChar=',',
@ -56,9 +55,9 @@ class CameraRigCalibration(desc.CommandLineNode):
desc.ChoiceParam( desc.ChoiceParam(
name='preset', name='preset',
label='Preset', label='Preset',
description='''Preset for the feature extractor when localizing a new image {LOW,MEDIUM,NORMAL,HIGH,ULTRA}''', description='''Preset for the feature extractor when localizing a new image (low, medium, normal, high, ultra)''',
value='NORMAL', value='normal',
values=['LOW', 'MEDIUM', 'NORMAL', 'HIGH', 'ULTRA'], values=['low', 'medium', 'normal', 'high', 'ultra'],
exclusive=True, exclusive=True,
uid=[0], uid=[0],
), ),

View file

@ -46,9 +46,8 @@ class CameraRigLocalization(desc.CommandLineNode):
name='matchDescTypes', name='matchDescTypes',
label='Match Describer Types', label='Match Describer Types',
description='''The describer types to use for the matching''', description='''The describer types to use for the matching''',
value=['SIFT'], value=['sift'],
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
'AKAZE_OCV'],
exclusive=False, exclusive=False,
uid=[0], uid=[0],
joinChar=',', joinChar=',',
@ -56,9 +55,9 @@ class CameraRigLocalization(desc.CommandLineNode):
desc.ChoiceParam( desc.ChoiceParam(
name='preset', name='preset',
label='Preset', label='Preset',
description='''Preset for the feature extractor when localizing a new image {LOW,MEDIUM,NORMAL,HIGH,ULTRA}''', description='''Preset for the feature extractor when localizing a new image (low, medium, normal, high, ultra)''',
value='NORMAL', value='normal',
values=['LOW', 'MEDIUM', 'NORMAL', 'HIGH', 'ULTRA'], values=['low', 'medium', 'normal', 'high', 'ultra'],
exclusive=True, exclusive=True,
uid=[0], uid=[0],
), ),

View file

@ -20,9 +20,9 @@ class FeatureExtraction(desc.CommandLineNode):
desc.ChoiceParam( desc.ChoiceParam(
name='describerTypes', name='describerTypes',
label='Describer Types', label='Describer Types',
description='''Describer types used to describe an image.''', description='Describer types used to describe an image.',
value=['SIFT'], value=['sift'],
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', 'AKAZE_OCV'], values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
exclusive=False, exclusive=False,
uid=[0], uid=[0],
joinChar=',', joinChar=',',
@ -30,9 +30,9 @@ class FeatureExtraction(desc.CommandLineNode):
desc.ChoiceParam( desc.ChoiceParam(
name='describerPreset', name='describerPreset',
label='Describer Preset', label='Describer Preset',
description='''Control the ImageDescriber configuration (low, medium, normal, high, ultra). Configuration 'ultra' can take long time !''', description='Control the ImageDescriber configuration (low, medium, normal, high, ultra). Configuration "ultra" can take long time !',
value='NORMAL', value='normal',
values=['LOW', 'MEDIUM', 'NORMAL', 'HIGH', 'ULTRA'], values=['low', 'medium', 'normal', 'high', 'ultra'],
exclusive=True, exclusive=True,
uid=[0], uid=[0],
), ),

View file

@ -39,10 +39,9 @@ class FeatureMatching(desc.CommandLineNode):
desc.ChoiceParam( desc.ChoiceParam(
name='describerTypes', name='describerTypes',
label='Describer Types', label='Describer Types',
description='''Describer types used to describe an image.''', description='Describer types used to describe an image.',
value=['SIFT'], value=['sift'],
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
'AKAZE_OCV'],
exclusive=False, exclusive=False,
uid=[0], uid=[0],
joinChar=',', joinChar=',',

View file

@ -35,9 +35,9 @@ class SfMTransform(desc.CommandLineNode):
desc.ChoiceParam( desc.ChoiceParam(
name='landmarksDescriberTypes', name='landmarksDescriberTypes',
label='Landmarks Describer Types', label='Landmarks Describer Types',
description='''Image describer types used to compute the mean of the point cloud. (only for 'landmarks' method)''', description='Image describer types used to compute the mean of the point cloud. (only for "landmarks" method).',
value=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', 'AKAZE_OCV'], value=['sift', 'akaze'],
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', 'AKAZE_OCV'], values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
exclusive=False, exclusive=False,
uid=[0], uid=[0],
joinChar=',', joinChar=',',

View file

@ -45,9 +45,8 @@ class StructureFromMotion(desc.CommandLineNode):
name='describerTypes', name='describerTypes',
label='Describer Types', label='Describer Types',
description='Describer types used to describe an image.', description='Describer types used to describe an image.',
value=['SIFT'], value=['sift'],
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
'AKAZE_OCV'],
exclusive=False, exclusive=False,
uid=[0], uid=[0],
joinChar=',', joinChar=',',