mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 01:46:31 +02:00
[nodes] Meshing: new filtering parameters
This commit is contained in:
parent
edcf72445b
commit
4a7c47a258
1 changed files with 16 additions and 0 deletions
|
@ -40,6 +40,22 @@ class Meshing(desc.CommandLineNode):
|
|||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='smoothingIteration',
|
||||
label='Smoothing Iteration',
|
||||
description='Number of Smoothing Iterations',
|
||||
value=10,
|
||||
range=(0, 50, 1),
|
||||
uid=[0],
|
||||
),
|
||||
desc.FloatParam(
|
||||
name='smoothingWeight',
|
||||
label='Smoothing Weight',
|
||||
description='Smoothing Weight',
|
||||
value=1.0,
|
||||
range=(0, 2, 1),
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name="depthMapFolder",
|
||||
label='Depth Maps Folder',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue