mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-04 01:08:26 +02:00
[nodes] meshing: fix command line
This commit is contained in:
parent
88a935f925
commit
96ac1216c3
1 changed files with 11 additions and 1 deletions
|
@ -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=[],
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue