From 7c7259bdba264e79a026ef6eac5eee79c25f9fd6 Mon Sep 17 00:00:00 2001 From: demoulinv Date: Thu, 9 Mar 2023 14:35:53 +0100 Subject: [PATCH] [imageProcessing] Update parameter default values --- meshroom/nodes/aliceVision/ImageProcessing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meshroom/nodes/aliceVision/ImageProcessing.py b/meshroom/nodes/aliceVision/ImageProcessing.py index 0bbda360..87c27651 100644 --- a/meshroom/nodes/aliceVision/ImageProcessing.py +++ b/meshroom/nodes/aliceVision/ImageProcessing.py @@ -404,8 +404,8 @@ Convert or apply filtering to the input images. desc.BoolParam( name='useDCPColorMatrixOnly', label='Use DCP Color Matrix Only', - description='Do not use the DCP forward matrices if any', - value=False, + description='Use only the Color Matrix information from the DCP and ignore the Forward Matrix.', + value=True, uid=[0], enabled=lambda node: (node.rawColorInterpretation.value=='DCPLinearProcessing') or (node.rawColorInterpretation.value=='DCPMetadata'), ), @@ -423,7 +423,7 @@ Convert or apply filtering to the input images. name='demosaicingAlgo', label='Demosaicing Algorithm', description='LibRaw Demosaicing Algorithm\n', - value='DHT', + value='AHD', values=['linear', 'VNG', 'PPG', 'AHD', 'DCB', 'AHD-Mod', 'AFD', 'VCD', 'Mixed', 'LMMSE', 'AMaZE', 'DHT', 'AAHD', 'none'], exclusive=True, uid=[0],