mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
[Texturing] option to choose process colorspace
Colorspace for the texturing internal computation (does not impact the output file colorspace). Choose between sRGB (default), LAB and XYZ
This commit is contained in:
parent
cc476d40ed
commit
0cf69bacc6
1 changed files with 10 additions and 0 deletions
|
@ -99,6 +99,16 @@ class Texturing(desc.CommandLineNode):
|
||||||
uid=[0],
|
uid=[0],
|
||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
|
desc.ChoiceParam(
|
||||||
|
name='processColorspace',
|
||||||
|
label='Process Colorspace',
|
||||||
|
description="Colorspace for the texturing internal computation (does not impact the output file colorspace).",
|
||||||
|
value='sRGB',
|
||||||
|
values=('sRGB', 'LAB', 'XYZ'),
|
||||||
|
exclusive=True,
|
||||||
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
name='multiBandDownscale',
|
name='multiBandDownscale',
|
||||||
label='Multi Band Downscale',
|
label='Multi Band Downscale',
|
||||||
|
|
Loading…
Add table
Reference in a new issue