Meshroom/meshroom/nodes/aliceVision/Meshing.py

15 lines
420 B
Python

from meshroom.core import desc
class Meshing(desc.CommandLineNode):
internalFolder = '{cache}/{nodeType}/{uid0}/'
commandLine = 'CMPMVS {mvsConfigValue} --meshing'
cpu = desc.Level.INTENSIVE
ram = desc.Level.INTENSIVE
mvsConfig = desc.File(
label='MVS Configuration file',
description='',
value='',
uid=[0],
isOutput=False,
)