From 545fca5a3d98f8c528248345e4df2c6ef807e29f Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Tue, 19 Dec 2017 10:38:39 +0100 Subject: [PATCH] [nodes] new ExportMayaMVG node --- meshroom/nodes/aliceVision/ExportMayaMVG.py | 26 +++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 meshroom/nodes/aliceVision/ExportMayaMVG.py diff --git a/meshroom/nodes/aliceVision/ExportMayaMVG.py b/meshroom/nodes/aliceVision/ExportMayaMVG.py new file mode 100644 index 00000000..a951a0c4 --- /dev/null +++ b/meshroom/nodes/aliceVision/ExportMayaMVG.py @@ -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=[], + ), + ]