mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-05 20:31:56 +02:00
[imageProcessing] Add parameters for enabling pixel aspect ratio application
This commit is contained in:
parent
35b69f10f7
commit
cf81cad95c
1 changed files with 24 additions and 0 deletions
|
@ -460,6 +460,30 @@ Convert or apply filtering to the input images.
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
|
desc.GroupAttribute(
|
||||||
|
name="parFilter",
|
||||||
|
label="Pixel Aspect Ratio",
|
||||||
|
description="Pixel Aspect Ratio parameters.",
|
||||||
|
joinChar=":",
|
||||||
|
groupDesc=[
|
||||||
|
desc.BoolParam(
|
||||||
|
name="parEnabled",
|
||||||
|
label="Enable",
|
||||||
|
description="Apply pixel aspect ratio.",
|
||||||
|
value=False,
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
|
desc.BoolParam(
|
||||||
|
name="parRowDecimation",
|
||||||
|
label="Row decimation",
|
||||||
|
description="If selected, reduce image height by decimating the number of rows.\n"
|
||||||
|
"Otherwise, increase width by upsampling image columns.",
|
||||||
|
value=False,
|
||||||
|
uid=[0],
|
||||||
|
enabled=lambda node: node.parFilter.parEnabled.value,
|
||||||
|
),
|
||||||
|
]
|
||||||
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name="outputFormat",
|
name="outputFormat",
|
||||||
label="Output Image Format",
|
label="Output Image Format",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue