[nodes] meshing: fix command line

This commit is contained in:
Fabien Castan 2017-10-31 21:19:07 +01:00
parent 88a935f925
commit 96ac1216c3

View file

@ -2,7 +2,7 @@ from meshroom.core import desc
class Meshing(desc.CommandLineNode):
internalFolder = '{cache}/{nodeType}/{uid0}/'
commandLine = 'CMPMVS {mvsConfigValue} --meshing'
commandLine = 'aliceVision_meshing {allParams}'
cpu = desc.Level.INTENSIVE
ram = desc.Level.INTENSIVE
@ -15,3 +15,13 @@ class Meshing(desc.CommandLineNode):
uid=[0],
),
]
outputs = [
desc.File(
name="output",
label="Output mesh",
description="Output mesh (OBJ file format).",
value='{cache}/{nodeType}/{uid0}/mesh.obj',
uid=[],
),
]