From 4a7c47a258efe98bfdb414af243894fab7318f4f Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Thu, 22 Feb 2018 12:46:52 +0100 Subject: [PATCH] [nodes] Meshing: new filtering parameters --- meshroom/nodes/aliceVision/Meshing.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/meshroom/nodes/aliceVision/Meshing.py b/meshroom/nodes/aliceVision/Meshing.py index e92bb9c9..80507a5a 100644 --- a/meshroom/nodes/aliceVision/Meshing.py +++ b/meshroom/nodes/aliceVision/Meshing.py @@ -40,6 +40,22 @@ class Meshing(desc.CommandLineNode): exclusive=True, uid=[0], ), + desc.IntParam( + name='smoothingIteration', + label='Smoothing Iteration', + description='Number of Smoothing Iterations', + value=10, + range=(0, 50, 1), + uid=[0], + ), + desc.FloatParam( + name='smoothingWeight', + label='Smoothing Weight', + description='Smoothing Weight', + value=1.0, + range=(0, 2, 1), + uid=[0], + ), desc.File( name="depthMapFolder", label='Depth Maps Folder',