Merge pull request #1274 from alicevision/dev/fuseCutFilteringBySolidAngle

[nodes] Meshing: new cells filtering by solid angle ratio
This commit is contained in:
Fabien Castan 2021-02-12 12:48:05 +01:00 committed by GitHub
commit 45f4e6e24f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -294,6 +294,24 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
uid=[0], uid=[0],
advanced=True, 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( desc.BoolParam(
name='refineFuse', name='refineFuse',
label='Refine Fuse', label='Refine Fuse',