mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 11:17:53 +02:00
29 lines
827 B
Python
29 lines
827 B
Python
from meshroom.core import desc
|
|
|
|
class DepthMap(desc.CommandLineNode):
|
|
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
|
commandLine = 'aliceVision_depthMapEstimation {allParams}'
|
|
gpu = desc.Level.INTENSIVE
|
|
size = desc.DynamicNodeSize('ini')
|
|
parallelization = desc.Parallelization(blockSize=3)
|
|
commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
|
|
|
|
inputs = [
|
|
desc.File(
|
|
name="ini",
|
|
label='MVS Configuration file',
|
|
description='',
|
|
value='',
|
|
uid=[0],
|
|
),
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name='output',
|
|
label='Output',
|
|
description='Output folder for generated depth maps.',
|
|
value='{cache}/{nodeType}/{uid0}/',
|
|
uid=[],
|
|
),
|
|
]
|