diff --git a/meshroom/nodes/aliceVision/Meshing.py b/meshroom/nodes/aliceVision/Meshing.py index b79fc751..7f94f8b0 100644 --- a/meshroom/nodes/aliceVision/Meshing.py +++ b/meshroom/nodes/aliceVision/Meshing.py @@ -294,6 +294,24 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents uid=[0], advanced=True, ), + desc.FloatParam( + name='minSolidAngleRatio', + label='minSolidAngleRatio', + description='Change cells status on surface around vertices to improve smoothness using solid angle ratio between full/empty parts. Zero to disable.', + value=0.2, + range=(0.0, 0.5, 0.01), + uid=[0], + advanced=True, + ), + desc.IntParam( + name='nbSolidAngleFilteringIterations', + label='Nb Solid Angle Filtering Iterations', + description='Filter cells status on surface around vertices to improve smoothness using solid angle ratio between full/empty parts. Zero to disable.', + value=2, + range=(0, 30, 1), + uid=[0], + advanced=True, + ), desc.BoolParam( name='refineFuse', label='Refine Fuse',