Skip to content

Commit

Permalink
[nodes] imageProcessing: output format option
Browse files Browse the repository at this point in the history
Allows you to choose the output format (RGBA, RGB, Grayscale)
  • Loading branch information
dsmtE committed Jul 2, 2020
1 parent 0dda4b3 commit 106a943
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions meshroom/nodes/aliceVision/ImageProcessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,16 @@ class ImageProcessing(desc.CommandLineNode):
uid=[0],
),
]),
desc.ChoiceParam(
name='outputFormat',
label='Output Image Format',
description='Allows you to choose the format of the output image.',
value='rgba',
values=['rgba', 'rgb', 'grayscale'],
exclusive=True,
advanced=True,
uid=[0],
),
desc.ChoiceParam(
name='verboseLevel',
label='Verbose Level',
Expand Down

0 comments on commit 106a943

Please sign in to comment.