mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-01 07:48:37 +02:00
[Nodes] imageProcessing: Add options for exposure and format adjustment.
This commit is contained in:
parent
190af16dce
commit
de893f81a6
1 changed files with 25 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue