mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 03:07:46 +02:00
Merge pull request #2273 from alicevision/dev/applyPixelAspectRatioInImageProcessing
[nodes] ImageProcessing: New option to apply the Pixel Aspect Ratio
This commit is contained in:
commit
d32c3df1d0
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
Reference in a new issue