diff --git a/meshroom/nodes/aliceVision/ImageProcessing.py b/meshroom/nodes/aliceVision/ImageProcessing.py index f2079f2bb4..e276c3658a 100644 --- a/meshroom/nodes/aliceVision/ImageProcessing.py +++ b/meshroom/nodes/aliceVision/ImageProcessing.py @@ -289,6 +289,15 @@ class ImageProcessing(desc.CommandLineNode): exclusive=True, uid=[0], ), + desc.ChoiceParam( + name='outputColorSpace', + label='Output Color Space', + description='Allows you to choose the color space of the output image.', + value='AUTO', + values=['AUTO', 'sRGB', 'Linear', 'ACES', 'ACEScg'], + exclusive=True, + uid=[0], + ), desc.ChoiceParam( name='storageDataType', label='Storage Data Type for EXR output', diff --git a/start.bat b/start.bat index 9044a1b4e2..65e27cbd43 100644 --- a/start.bat +++ b/start.bat @@ -9,7 +9,8 @@ REM set MESHROOM_OUTPUT_QML_WARNINGS=1 REM set MESHROOM_INSTANT_CODING=1 REM set QT_PLUGIN_PATH=C:\dev\meshroom\install REM set QML2_IMPORT_PATH=C:\dev\meshroom\install\qml -REM set PATH=C:\dev\AliceVision\install\bin;C:\dev\vcpkg\installed\x64-windows\bin +REM set PATH=C:\dev\AliceVision\install\bin;C:\dev\vcpkg\installed\x64-windows\bin;%PATH% +REM set ALICEVISION_ROOT=C:\dev\AliceVision\install python meshroom\ui