From ea72cefa59cb78ccef08adebc6def2d50fb45afc Mon Sep 17 00:00:00 2001 From: Enguerrand DE SMET Date: Mon, 29 Jun 2020 13:21:19 +0200 Subject: [PATCH] [nodes] imageProcessing: add a checkbox for the Sharpen Filter --- meshroom/nodes/aliceVision/ImageProcessing.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/meshroom/nodes/aliceVision/ImageProcessing.py b/meshroom/nodes/aliceVision/ImageProcessing.py index d5c80285..2e84d5ba 100644 --- a/meshroom/nodes/aliceVision/ImageProcessing.py +++ b/meshroom/nodes/aliceVision/ImageProcessing.py @@ -25,8 +25,8 @@ Convert or apply filtering to the input images. ), desc.ListAttribute( elementDesc=desc.File( - name="imagesFolder", - label="Images Folder", + name="inputFolder", + label="input Folder", description="", value="", uid=[0], @@ -101,11 +101,18 @@ Convert or apply filtering to the input images. value=False, uid=[0], ), + desc.BoolParam( + name='sharpen', + label='Sharpen', + description='Use sharpen.', + value=False, + uid=[0], + ), desc.IntParam( name='sharpenWidth', label='Sharpen Width', description='Sharpen Width.', - value=1, + value=3, range=(1, 9, 2), uid=[0], ),