mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
Add first version of the MVS nodes
This commit is contained in:
parent
2c62c75e2e
commit
185fa6e58c
8 changed files with 173 additions and 0 deletions
15
meshroom/nodes/Texturing.py
Normal file
15
meshroom/nodes/Texturing.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from meshroom.processGraph import desc
|
||||
|
||||
class Texturing(desc.CommandLineNode):
|
||||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||
commandLine = 'CMPMVS {mvsConfigValue} --texturing'
|
||||
|
||||
mvsConfig = desc.FileAttribute(
|
||||
label='MVS Configuration file',
|
||||
description='',
|
||||
value='',
|
||||
shortName='',
|
||||
arg='',
|
||||
uid=[0],
|
||||
isOutput=False,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue