mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-04 20:01:58 +02:00
[nodes] Replace the list of colorspaces with the utilitary constant
This commit is contained in:
parent
a7fc167512
commit
092dcfe722
9 changed files with 27 additions and 14 deletions
|
@ -4,6 +4,7 @@ import json
|
|||
import os
|
||||
|
||||
from meshroom.core import desc
|
||||
from meshroom.core.utils import COLORSPACES
|
||||
|
||||
|
||||
class PanoramaPostProcessing(desc.CommandLineNode):
|
||||
|
@ -58,8 +59,8 @@ Post process the panorama.
|
|||
name="outputColorSpace",
|
||||
label="Output Color Space",
|
||||
description="The color space of the output image.",
|
||||
values=COLORSPACES,
|
||||
value="Linear",
|
||||
values=["sRGB", "rec709", "Linear", "ACES2065-1", "ACEScg"],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue