From fadb1b472f318e10ecb75b49d551e9802e7c5543 Mon Sep 17 00:00:00 2001 From: Enguerrand DE SMET Date: Thu, 2 Jul 2020 17:02:26 +0200 Subject: [PATCH] [nodes] imageProcessing: output format option Allows you to choose the output format (RGBA, RGB, Grayscale) --- meshroom/nodes/aliceVision/ImageProcessing.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meshroom/nodes/aliceVision/ImageProcessing.py b/meshroom/nodes/aliceVision/ImageProcessing.py index 90316037..8f3feba1 100644 --- a/meshroom/nodes/aliceVision/ImageProcessing.py +++ b/meshroom/nodes/aliceVision/ImageProcessing.py @@ -237,6 +237,16 @@ Convert or apply filtering to the input images. 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',