mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-25 15:06:38 +02:00
[nodes] use non-exclusive choice for describerTypes param
This commit is contained in:
parent
7ec61b9d6c
commit
edd14691fc
3 changed files with 21 additions and 12 deletions
|
@ -20,11 +20,14 @@ class FeatureExtraction(desc.CommandLineNode):
|
||||||
uid=[],
|
uid=[],
|
||||||
isOutput=True,
|
isOutput=True,
|
||||||
)
|
)
|
||||||
describerTypes = desc.StringParam(
|
describerTypes = desc.ChoiceParam(
|
||||||
label='Describer Types',
|
label='Describer Types',
|
||||||
description='''Describer types to use 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'],
|
||||||
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
joinChar=',',
|
||||||
)
|
)
|
||||||
describerPreset = desc.ChoiceParam(
|
describerPreset = desc.ChoiceParam(
|
||||||
label='Describer Preset',
|
label='Describer Preset',
|
||||||
|
|
|
@ -28,11 +28,14 @@ class FeatureMatching(desc.CommandLineNode):
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
)
|
)
|
||||||
describerTypes = desc.StringParam(
|
describerTypes = desc.ChoiceParam(
|
||||||
label='Describer Types',
|
label='Describer Types',
|
||||||
description='''Describer types to use 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'],
|
||||||
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
joinChar=',',
|
||||||
)
|
)
|
||||||
featuresDirectory = desc.File(
|
featuresDirectory = desc.File(
|
||||||
label='Features Directory',
|
label='Features Directory',
|
||||||
|
|
|
@ -41,11 +41,14 @@ class StructureFromMotion(desc.CommandLineNode):
|
||||||
uid=[0],
|
uid=[0],
|
||||||
isOutput=False,
|
isOutput=False,
|
||||||
)
|
)
|
||||||
describerTypes = desc.StringParam(
|
describerTypes = desc.ChoiceParam(
|
||||||
label='Describer Types',
|
label='Describer Types',
|
||||||
description='''Describer types to use 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'],
|
||||||
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
joinChar=',',
|
||||||
)
|
)
|
||||||
interFileExtension = desc.File(
|
interFileExtension = desc.File(
|
||||||
label='Inter File Extension',
|
label='Inter File Extension',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue