mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-28 08:26:32 +02:00
[Node] Texturing: Replace processcolorspaceName with workingcolorSpace and add outputColorSpace
This commit is contained in:
parent
eb6d65f938
commit
008d901a13
1 changed files with 14 additions and 4 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue