Skip to content

Commit

Permalink
[imageProcessing] Update parameter default values
Browse files Browse the repository at this point in the history
  • Loading branch information
demoulinv committed Mar 9, 2023
1 parent a4c1acb commit 7c7259b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meshroom/nodes/aliceVision/ImageProcessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ class ImageProcessing(desc.AVCommandLineNode):
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'),
),
Expand All @@ -423,7 +423,7 @@ class ImageProcessing(desc.AVCommandLineNode):
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],
Expand Down

0 comments on commit 7c7259b

Please sign in to comment.