mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-10 15:46:54 +02:00
[nodes] imageProcessing: add a checkbox for the Sharpen Filter
This commit is contained in:
parent
0c69fcf6fa
commit
ea72cefa59
1 changed files with 10 additions and 3 deletions
|
@ -25,8 +25,8 @@ Convert or apply filtering to the input images.
|
||||||
),
|
),
|
||||||
desc.ListAttribute(
|
desc.ListAttribute(
|
||||||
elementDesc=desc.File(
|
elementDesc=desc.File(
|
||||||
name="imagesFolder",
|
name="inputFolder",
|
||||||
label="Images Folder",
|
label="input Folder",
|
||||||
description="",
|
description="",
|
||||||
value="",
|
value="",
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -101,11 +101,18 @@ Convert or apply filtering to the input images.
|
||||||
value=False,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
desc.BoolParam(
|
||||||
|
name='sharpen',
|
||||||
|
label='Sharpen',
|
||||||
|
description='Use sharpen.',
|
||||||
|
value=False,
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
name='sharpenWidth',
|
name='sharpenWidth',
|
||||||
label='Sharpen Width',
|
label='Sharpen Width',
|
||||||
description='Sharpen Width.',
|
description='Sharpen Width.',
|
||||||
value=1,
|
value=3,
|
||||||
range=(1, 9, 2),
|
range=(1, 9, 2),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue