Skip to content

Commit

Permalink
Merge pull request #1681 from alicevision/outputInACEScgColorSpace
Browse files Browse the repository at this point in the history
Output in ACES or ACEScg color space
  • Loading branch information
fabiencastan authored Aug 2, 2022
2 parents dd5aadd + a4598e0 commit 96b4ec8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions meshroom/nodes/aliceVision/ImageProcessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
3 changes: 2 additions & 1 deletion start.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 96b4ec8

Please sign in to comment.