mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-24 22:46:28 +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=[],
|
||||
isOutput=True,
|
||||
)
|
||||
describerTypes = desc.StringParam(
|
||||
describerTypes = desc.ChoiceParam(
|
||||
label='Describer Types',
|
||||
description='''Describer types to use to describe an image:''',
|
||||
value='SIFT',
|
||||
description='''Describer types used to describe an image.''',
|
||||
value=['SIFT'],
|
||||
values=['SIFT', 'SIFT_FLOAT', 'AKAZE', 'AKAZE_LIOP', 'AKAZE_MLDB', 'CCTAG3', 'CCTAG4', 'SIFT_OCV', 'AKAZE_OCV'],
|
||||
exclusive=False,
|
||||
uid=[0],
|
||||
joinChar=',',
|
||||
)
|
||||
describerPreset = desc.ChoiceParam(
|
||||
label='Describer Preset',
|
||||
|
@ -61,4 +64,4 @@ class FeatureExtraction(desc.CommandLineNode):
|
|||
values=['fatal', 'error', 'warning', 'info', 'debug', 'trace'],
|
||||
exclusive=True,
|
||||
uid=[],
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue