mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[nodes] new ExportMayaMVG node
This commit is contained in:
parent
a26a3f9af5
commit
545fca5a3d
1 changed files with 26 additions and 0 deletions
26
meshroom/nodes/aliceVision/ExportMayaMVG.py
Normal file
26
meshroom/nodes/aliceVision/ExportMayaMVG.py
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
from meshroom.core import desc
|
||||||
|
|
||||||
|
|
||||||
|
class ExportMayaMVG(desc.CommandLineNode):
|
||||||
|
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||||
|
commandLine = 'aliceVision_exportMayaMVG {allParams}'
|
||||||
|
|
||||||
|
inputs = [
|
||||||
|
desc.File(
|
||||||
|
name='input',
|
||||||
|
label='Input SfMData',
|
||||||
|
description='',
|
||||||
|
value='',
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
||||||
|
outputs = [
|
||||||
|
desc.File(
|
||||||
|
name='output',
|
||||||
|
label='Output Folder',
|
||||||
|
description='Folder for MayaMVG outputs: undistorted images and thumbnails.',
|
||||||
|
value='{cache}/{nodeType}/{uid0}/',
|
||||||
|
uid=[],
|
||||||
|
),
|
||||||
|
]
|
Loading…
Add table
Add a link
Reference in a new issue