mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 19:27:10 +02:00
13 lines
362 B
Python
13 lines
362 B
Python
from meshroom.core import desc
|
|
|
|
class Texturing(desc.CommandLineNode):
|
|
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
|
commandLine = 'CMPMVS {mvsConfigValue} --texturing'
|
|
|
|
mvsConfig = desc.File(
|
|
label='MVS Configuration file',
|
|
description='',
|
|
value='',
|
|
uid=[0],
|
|
isOutput=False,
|
|
)
|