mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
Merge pull request #1274 from alicevision/dev/fuseCutFilteringBySolidAngle
[nodes] Meshing: new cells filtering by solid angle ratio
This commit is contained in:
commit
45f4e6e24f
1 changed files with 18 additions and 0 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue