Skip to content

Commit

Permalink
Merge pull request #1268 from alicevision/dev/fuseCut
Browse files Browse the repository at this point in the history
[nodes] Meshing: add seed and voteFilteringForWeaklySupportedSurfaces
  • Loading branch information
fabiencastan authored Feb 12, 2021
2 parents 8d0cd74 + 8e6921b commit aa8bbfd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions meshroom/nodes/aliceVision/Meshing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit aa8bbfd

Please sign in to comment.