mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-03 03:11:56 +02:00
19 lines
579 B
Python
19 lines
579 B
Python
from meshroom.core import desc
|
|
|
|
class DepthMap(desc.CommandLineNode):
|
|
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
|
commandLine = 'aliceVision_depthMapEstimation {allParams}'
|
|
gpu = desc.Level.INTENSIVE
|
|
parallelization = desc.Parallelization(inputListParamName='viewpoints', blockSize=3)
|
|
commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
|
|
|
|
inputs = [
|
|
desc.File(
|
|
name="ini",
|
|
label='MVS Configuration file',
|
|
description='',
|
|
value='',
|
|
uid=[0],
|
|
),
|
|
]
|
|
|