From 8e6921b2e49b8e5fafb3cf2111578efd4bc91936 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Wed, 10 Feb 2021 22:23:51 +0100 Subject: [PATCH] [nodes] Meshing: add seed and voteFilteringForWeaklySupportedSurfaces --- 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 29cb664f2d..b79fc751a1 100644 --- a/meshroom/nodes/aliceVision/Meshing.py +++ b/meshroom/nodes/aliceVision/Meshing.py @@ -302,6 +302,13 @@ class Meshing(desc.CommandLineNode): uid=[0], advanced=True, ), + desc.BoolParam( + name='voteFilteringForWeaklySupportedSurfaces', + label='Weakly Supported Surface Support', + description='Improve support of weakly supported surfaces with a tetrahedra fullness score filtering.', + value=True, + uid=[0], + ), desc.BoolParam( name='addLandmarksToTheDensePointCloud', label='Add Landmarks To The Dense Point Cloud', @@ -325,6 +332,15 @@ class Meshing(desc.CommandLineNode): uid=[], advanced=True, ), + desc.IntParam( + name='seed', + label='Seed', + description='Seed used for random operations. Zero means use of random device instead of a fixed seed.', + value=0, + range=(0, 10000, 1), + uid=[0], + advanced=True, + ), desc.ChoiceParam( name='verboseLevel', label='Verbose Level',