Skip to content

Commit

Permalink
[Node] imageProcessing: Add inputColorSpace option to force the color…
Browse files Browse the repository at this point in the history
… space of the input image.
  • Loading branch information
demoulinv committed Oct 9, 2023
1 parent 11333e3 commit 09c56ce
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions meshroom/nodes/aliceVision/ImageProcessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,15 @@ class ImageProcessing(desc.AVCommandLineNode):
exclusive=True,
uid=[0],
),
desc.ChoiceParam(
name="inputColorSpace",
label="Input Color Space",
description="Allows you to force the color space of the input image.",
value="AUTO",
values=["AUTO", "sRGB", "rec709", "Linear", "ACES2065-1", "ACEScg", "no_conversion"],
exclusive=True,
uid=[0],
),
desc.ChoiceParam(
name="outputColorSpace",
label="Output Color Space",
Expand Down

0 comments on commit 09c56ce

Please sign in to comment.