mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-30 17:36:33 +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,
|
advanced=True,
|
||||||
),
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='processColorspace',
|
name='workingColorSpace',
|
||||||
label='Process Colorspace',
|
label='Working Color Space',
|
||||||
description="Colorspace for the texturing internal computation (does not impact the output file colorspace).",
|
description="Color space for the texturing internal computation (does not impact the output file color space).",
|
||||||
value='sRGB',
|
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,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
advanced=True,
|
advanced=True,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue