Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabien Castan <fabcastan@gmail.com>2022-10-19 18:18:04 +0300
committerGitHub <noreply@github.com>2022-10-19 18:18:04 +0300
commite158917a425e62309e965fa84fc1875e7ca9fe18 (patch)
tree9594888cb31472394a37650e8db342bfb9ab51e2
parent1f78158c3bcc6971b76c22ce262ede76e94afba1 (diff)
parent9065adea015600880033fd4e76e9a1561093fd29 (diff)
Merge pull request #1792 from alicevision/ColorSpaceManagement
Color space management
-rw-r--r--meshroom/nodes/aliceVision/ImageProcessing.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/meshroom/nodes/aliceVision/ImageProcessing.py b/meshroom/nodes/aliceVision/ImageProcessing.py
index 8aaebff6..5ba23855 100644
--- a/meshroom/nodes/aliceVision/ImageProcessing.py
+++ b/meshroom/nodes/aliceVision/ImageProcessing.py
@@ -88,6 +88,13 @@ Convert or apply filtering to the input images.
uid=[0],
),
desc.BoolParam(
+ name='keepImageFilename',
+ label='Keep Image Name',
+ description='Keep original image name instead of view name',
+ value=False,
+ uid=[0],
+ ),
+ desc.BoolParam(
name='fixNonFinite',
label='Fix Non-Finite',
description='Fix non-finite pixels based on neighboring pixels average.',
@@ -294,7 +301,7 @@ Convert or apply filtering to the input images.
label='Output Color Space',
description='Allows you to choose the color space of the output image.',
value='AUTO',
- values=['AUTO', 'sRGB', 'Linear', 'ACES', 'ACEScg'],
+ values=['AUTO', 'sRGB', 'Linear', 'ACES2065-1', 'ACEScg'],
exclusive=True,
uid=[0],
),