mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
[nodes] Adding partitioning argument to meshing node
This commit is contained in:
parent
1a506f81fa
commit
72064996a6
1 changed files with 16 additions and 5 deletions
|
@ -175,13 +175,24 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
|
|||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='maxPointsPerVoxel',
|
||||
label='Max Points Per Voxel',
|
||||
description='Max points per voxel',
|
||||
value=1000000,
|
||||
range=(500000, 30000000, 1000),
|
||||
name='maxPointsPerSubdivision',
|
||||
label='Max Points Per Subdivision',
|
||||
description='Max points per subdivision',
|
||||
value=500000,
|
||||
range=(100000, 10000000, 1000),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
enabled= lambda node: node.partitioning.value == 'auto',
|
||||
),
|
||||
desc.FloatParam(
|
||||
name='inflationRate',
|
||||
label='Inflation Rate',
|
||||
description='Rate of inflation for the mesh when refusing',
|
||||
value=5.0,
|
||||
range=(0.0, 100.0, 0.1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
enabled= lambda node: node.partitioning.value == 'auto',
|
||||
),
|
||||
desc.IntParam(
|
||||
name='minStep',
|
||||
|
|
Loading…
Add table
Reference in a new issue