diff --git a/meshroom/nodes/aliceVision/Texturing.py b/meshroom/nodes/aliceVision/Texturing.py index a6543bec..8c62cfd9 100644 --- a/meshroom/nodes/aliceVision/Texturing.py +++ b/meshroom/nodes/aliceVision/Texturing.py @@ -254,11 +254,21 @@ Many cameras are contributing to the low frequencies and only the best ones cont advanced=True, ), desc.ChoiceParam( - name='processColorspace', - label='Process Colorspace', - description="Colorspace for the texturing internal computation (does not impact the output file colorspace).", + name='workingColorSpace', + label='Working Color Space', + description="Color space for the texturing internal computation (does not impact the output file color space).", value='sRGB', - values=('sRGB', 'LAB', 'XYZ'), + values=('sRGB', 'Linear', 'ACES2065-1', 'ACEScg'), + exclusive=True, + uid=[0], + advanced=True, + ), + desc.ChoiceParam( + name='outputColorSpace', + label='Output Color Space', + description="Color space for the output file.", + value='AUTO', + values=('sRGB', 'Linear', 'ACES2065-1', 'ACEScg', 'AUTO'), exclusive=True, uid=[0], advanced=True,