Skip to content

Commit

Permalink
Merge pull request #1911 from alicevision/fix/nodes/exportAnimatedCam…
Browse files Browse the repository at this point in the history
…eras

[nodes] ExportAnimatedCameras: fix output params labels
  • Loading branch information
fabiencastan authored Mar 3, 2023
2 parents ea323ed + 95d0ca3 commit c7ea401
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions meshroom/nodes/aliceVision/ExportAnimatedCamera.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[],
),
]
]

0 comments on commit c7ea401

Please sign in to comment.