mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-03 04:06:45 +02:00
14 lines
410 B
Python
14 lines
410 B
Python
from meshroom.core import desc
|
|
|
|
class DepthMap(desc.CommandLineNode):
|
|
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
|
commandLine = 'aliceVision_depthMapEstimation --ini {mvsConfigValue}'
|
|
gpu = desc.Level.INTENSIVE
|
|
|
|
mvsConfig = desc.File(
|
|
label='MVS Configuration file',
|
|
description='',
|
|
value='',
|
|
uid=[0],
|
|
isOutput=False,
|
|
)
|