mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
15 lines
421 B
Python
15 lines
421 B
Python
from meshroom.core import desc
|
|
|
|
class DepthMap(desc.CommandLineNode):
|
|
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
|
commandLine = 'CMPMVS {mvsConfigValue} --createDepthmap'
|
|
|
|
mvsConfig = desc.FileAttribute(
|
|
label='MVS Configuration file',
|
|
description='',
|
|
value='',
|
|
shortName='',
|
|
arg='',
|
|
uid=[0],
|
|
isOutput=False,
|
|
)
|