mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 00:38:41 +02:00
Add a selector for compositer type
This commit is contained in:
parent
af9898474d
commit
7e634ea9f5
1 changed files with 8 additions and 6 deletions
|
@ -28,12 +28,14 @@ class PanoramaCompositing(desc.CommandLineNode):
|
|||
uid=[0],
|
||||
group='', # not part of allParams, as this is not a parameter for the command line
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='multiband',
|
||||
label='Use Multiband',
|
||||
description='Use multi band algorithm for compositing',
|
||||
value=True,
|
||||
uid=[0],
|
||||
desc.ChoiceParam(
|
||||
name='compositerType',
|
||||
label='Compositer Type',
|
||||
description='Which compositer should be used to blend images',
|
||||
value=['multiband'],
|
||||
values=['replace', 'alpha', 'multiband'],
|
||||
exclusive=True,
|
||||
uid=[0]
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue