From 65246a1a84fb079ad72e93e2d49d3c9644776355 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Mon, 14 Sep 2020 22:28:24 +0200 Subject: [PATCH] [nodes] ImageProcessing: add storageDataType option --- meshroom/nodes/aliceVision/ImageProcessing.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/meshroom/nodes/aliceVision/ImageProcessing.py b/meshroom/nodes/aliceVision/ImageProcessing.py index 32298d80..653a1600 100644 --- a/meshroom/nodes/aliceVision/ImageProcessing.py +++ b/meshroom/nodes/aliceVision/ImageProcessing.py @@ -288,6 +288,19 @@ Convert or apply filtering to the input images. exclusive=True, uid=[0], ), + desc.ChoiceParam( + name='storageDataType', + label='Storage Data Type for EXR output', + description='Storage image data type:\n' + ' * float: Use full floating point (32 bits per channel)\n' + ' * half: Use half float (16 bits per channel)\n' + ' * halfFinite: Use half float, but clamp values to avoid non-finite values\n' + ' * auto: Use half float if all values can fit, else use full float\n', + value='float', + values=['float', 'half', 'halfFinite', 'auto'], + exclusive=True, + uid=[0], + ), desc.ChoiceParam( name='verboseLevel', label='Verbose Level',