From 95d0ca315618287bae27d9bfa1f61a476a3e635e Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Tue, 28 Feb 2023 09:44:04 +0100 Subject: [PATCH] [nodes] ExportAnimatedCameras: fix output params labels --- meshroom/nodes/aliceVision/ExportAnimatedCamera.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/meshroom/nodes/aliceVision/ExportAnimatedCamera.py b/meshroom/nodes/aliceVision/ExportAnimatedCamera.py index de503cea39..644519e0ec 100644 --- a/meshroom/nodes/aliceVision/ExportAnimatedCamera.py +++ b/meshroom/nodes/aliceVision/ExportAnimatedCamera.py @@ -87,26 +87,26 @@ class ExportAnimatedCamera(desc.AVCommandLineNode): outputs = [ desc.File( name='output', - label='Filepath', - description='Output filepath for the alembic animated camera.', + label='Folder', + description='Output folder with animated camera and undistorted images.', value=desc.Node.internalFolder, uid=[], ), desc.File( name='outputCamera', - label='Camera Filepath', - description='Output filename for the alembic animated camera.', + label='Camera', + description='Output filename for the animated camera in Alembic format.', value=desc.Node.internalFolder + 'camera.abc', group='', # exclude from command line uid=[], ), desc.File( name='outputUndistorted', - label='Undistorted images Filepath', + label='Undistorted Images', description='Output Undistorted images.', value=desc.Node.internalFolder + 'undistort', group='', # exclude from command line uid=[], ), - ] + ]