[Nodes] imageProcessing: Add options for exposure and format adjustment.

This commit is contained in:
demoulinv 2023-04-13 20:23:51 +02:00 committed by Loïc Vital
parent 190af16dce
commit de893f81a6

View file

@ -104,10 +104,18 @@ Convert or apply filtering to the input images.
desc.BoolParam(
name='exposureCompensation',
label='Exposure Compensation',
description='Exposure Compensation',
description='Exposure Compensation (only valid for sfmData)',
value=False,
uid=[0],
),
desc.FloatParam(
name='exposureAdjust',
label='Exposure Adjustment',
description='Exposure Adjustment in fstops',
value=0.0,
range=(-2.0, 2.0, 0.125),
uid=[0],
),
desc.GroupAttribute(name="lensCorrection", label="Lens Correction", description="Automatic lens correction settings.", joinChar=":", groupDesc=[
desc.BoolParam(
name='lensCorrectionEnabled',
@ -150,6 +158,22 @@ Convert or apply filtering to the input images.
range=(0.0, 1.0, 0.01),
uid=[0],
),
desc.IntParam(
name='maxWidth',
label='max Width',
description='Maximal width of the output images.',
value=0,
range=(0, 10000, 1),
uid=[0],
),
desc.IntParam(
name='maxHeight',
label='max Height',
description='Maximal height of the output images.',
value=0,
range=(0, 10000, 1),
uid=[0],
),
desc.FloatParam(
name='contrast',
label='Contrast',