mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-06 21:01:59 +02:00
[nodes] meshResampling: multiple copy/paste errors fixed
This commit is contained in:
parent
74fac6143e
commit
7cdac6b260
1 changed files with 8 additions and 8 deletions
|
@ -2,14 +2,14 @@ from meshroom.core import desc
|
||||||
|
|
||||||
class MeshResampling(desc.CommandLineNode):
|
class MeshResampling(desc.CommandLineNode):
|
||||||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||||
commandLine = 'aliceVision_meshing {allParams}'
|
commandLine = 'aliceVision_meshResampling {allParams}'
|
||||||
|
|
||||||
cpu = desc.Level.NORMAL
|
cpu = desc.Level.NORMAL
|
||||||
ram = desc.Level.NORMAL
|
ram = desc.Level.NORMAL
|
||||||
|
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name="intput",
|
name="input",
|
||||||
label='Input Mesh (OBJ file format).',
|
label='Input Mesh (OBJ file format).',
|
||||||
description='',
|
description='',
|
||||||
value='',
|
value='',
|
||||||
|
@ -27,24 +27,24 @@ class MeshResampling(desc.CommandLineNode):
|
||||||
name='nbVertices',
|
name='nbVertices',
|
||||||
label='Fixed Number of Vertices',
|
label='Fixed Number of Vertices',
|
||||||
description='Fixed number of output vertices.',
|
description='Fixed number of output vertices.',
|
||||||
value=0.0,
|
value=0,
|
||||||
range=(0.0, 1.0, 0.01),
|
range=(0, 1000000, 1),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
name='minVertices',
|
name='minVertices',
|
||||||
label='Min Vertices',
|
label='Min Vertices',
|
||||||
description='Min number of output vertices.',
|
description='Min number of output vertices.',
|
||||||
value=0.0,
|
value=0,
|
||||||
range=(0.0, 1.0, 0.01),
|
range=(0, 1000000, 1),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
name='maxVertices',
|
name='maxVertices',
|
||||||
label='Max Vertices',
|
label='Max Vertices',
|
||||||
description='Max number of output vertices.',
|
description='Max number of output vertices.',
|
||||||
value=0.0,
|
value=0,
|
||||||
range=(0.0, 1.0, 0.01),
|
range=(0, 1000000, 1),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue