Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Vital <mugulmotion@gmail.com>2022-09-30 15:05:56 +0300
committerFabien Castan <fabcastan@gmail.com>2022-10-19 11:50:21 +0300
commita5fbbe7d8248c0c011bdb12ee17cd224c490072f (patch)
treecf909a46bdbf6dfaaaff67eefe2b372a9de8216e
parent91cc786e1486c5e87d7c9446e88f032039d0cc2d (diff)
[node] output labels renaming without 'Output' prefix
-rw-r--r--meshroom/nodes/aliceVision/CameraLocalization.py4
-rw-r--r--meshroom/nodes/aliceVision/CameraRigCalibration.py2
-rw-r--r--meshroom/nodes/aliceVision/CameraRigLocalization.py2
-rw-r--r--meshroom/nodes/aliceVision/ColorCheckerCorrection.py4
-rw-r--r--meshroom/nodes/aliceVision/ConvertMesh.py2
-rw-r--r--meshroom/nodes/aliceVision/DepthMap.py2
-rw-r--r--meshroom/nodes/aliceVision/DistortionCalibration.py2
-rw-r--r--meshroom/nodes/aliceVision/ExportAnimatedCamera.py6
-rw-r--r--meshroom/nodes/aliceVision/ExportColoredPointCloud.py2
-rw-r--r--meshroom/nodes/aliceVision/ExportMatches.py2
-rw-r--r--meshroom/nodes/aliceVision/ExportMaya.py2
-rw-r--r--meshroom/nodes/aliceVision/FeatureRepeatability.py2
-rw-r--r--meshroom/nodes/aliceVision/GlobalSfM.py2
-rw-r--r--meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py4
-rw-r--r--meshroom/nodes/aliceVision/ImageProcessing.py6
-rw-r--r--meshroom/nodes/aliceVision/KeyframeSelection.py2
-rw-r--r--meshroom/nodes/aliceVision/LdrToHdrCalibration.py2
-rw-r--r--meshroom/nodes/aliceVision/LdrToHdrMerge.py2
-rw-r--r--meshroom/nodes/aliceVision/LdrToHdrSampling.py2
-rw-r--r--meshroom/nodes/aliceVision/LightingEstimation.py2
-rw-r--r--meshroom/nodes/aliceVision/MergeMeshes.py2
-rw-r--r--meshroom/nodes/aliceVision/MeshDecimate.py2
-rw-r--r--meshroom/nodes/aliceVision/MeshMasking.py2
-rw-r--r--meshroom/nodes/aliceVision/MeshResampling.py2
-rw-r--r--meshroom/nodes/aliceVision/PanoramaCompositing.py2
-rw-r--r--meshroom/nodes/aliceVision/PanoramaEstimation.py4
-rw-r--r--meshroom/nodes/aliceVision/PanoramaInit.py2
-rw-r--r--meshroom/nodes/aliceVision/PanoramaMerging.py2
-rw-r--r--meshroom/nodes/aliceVision/PanoramaPrepareImages.py2
-rw-r--r--meshroom/nodes/aliceVision/PanoramaSeams.py2
-rw-r--r--meshroom/nodes/aliceVision/PanoramaWarping.py2
-rw-r--r--meshroom/nodes/aliceVision/SfMAlignment.py4
-rw-r--r--meshroom/nodes/aliceVision/SfMTransfer.py4
-rw-r--r--meshroom/nodes/aliceVision/SfMTransform.py4
-rw-r--r--meshroom/nodes/aliceVision/Split360Images.py2
-rw-r--r--meshroom/nodes/aliceVision/StructureFromMotion.py2
36 files changed, 47 insertions, 47 deletions
diff --git a/meshroom/nodes/aliceVision/CameraLocalization.py b/meshroom/nodes/aliceVision/CameraLocalization.py
index d8aabe9a..1f98119d 100644
--- a/meshroom/nodes/aliceVision/CameraLocalization.py
+++ b/meshroom/nodes/aliceVision/CameraLocalization.py
@@ -209,14 +209,14 @@ class CameraLocalization(desc.CommandLineNode):
outputs = [
desc.File(
name='outputAlembic',
- label='Output Alembic',
+ label='Alembic',
description='''Filename for the SfMData export file (where camera poses will be stored)''',
value=desc.Node.internalFolder + 'trackedCameras.abc',
uid=[],
),
desc.File(
name='outputJSON',
- label='Output JSON',
+ label='JSON',
description='''Filename for the localization results as .json''',
value=desc.Node.internalFolder + 'trackedCameras.json',
uid=[],
diff --git a/meshroom/nodes/aliceVision/CameraRigCalibration.py b/meshroom/nodes/aliceVision/CameraRigCalibration.py
index 117457c3..3fa103e1 100644
--- a/meshroom/nodes/aliceVision/CameraRigCalibration.py
+++ b/meshroom/nodes/aliceVision/CameraRigCalibration.py
@@ -165,7 +165,7 @@ class CameraRigCalibration(desc.CommandLineNode):
outputs = [
desc.File(
name='outfile',
- label='Output File',
+ label='File',
description='''The name of the file where to store the calibration data''',
value=desc.Node.internalFolder + 'cameraRigCalibration.rigCal',
uid=[],
diff --git a/meshroom/nodes/aliceVision/CameraRigLocalization.py b/meshroom/nodes/aliceVision/CameraRigLocalization.py
index 6cff2d31..ca4875c2 100644
--- a/meshroom/nodes/aliceVision/CameraRigLocalization.py
+++ b/meshroom/nodes/aliceVision/CameraRigLocalization.py
@@ -172,7 +172,7 @@ class CameraRigLocalization(desc.CommandLineNode):
outputs = [
desc.File(
name='outputAlembic',
- label='Output Alembic',
+ label='Alembic',
description='''Filename for the SfMData export file (where camera poses will be stored).''',
value=desc.Node.internalFolder + 'trackedcameras.abc',
uid=[],
diff --git a/meshroom/nodes/aliceVision/ColorCheckerCorrection.py b/meshroom/nodes/aliceVision/ColorCheckerCorrection.py
index 1fb02baa..0b5e6554 100644
--- a/meshroom/nodes/aliceVision/ColorCheckerCorrection.py
+++ b/meshroom/nodes/aliceVision/ColorCheckerCorrection.py
@@ -63,7 +63,7 @@ If multiple color charts are submitted, only the first one will be taken in acco
outputs = [
desc.File(
name='outSfMData',
- label='Output sfmData',
+ label='SfmData',
description='Output sfmData.',
value=lambda attr: (desc.Node.internalFolder + os.path.basename(attr.node.input.value)) if (os.path.splitext(attr.node.input.value)[1] in ['.abc', '.sfm']) else '',
uid=[],
@@ -71,7 +71,7 @@ If multiple color charts are submitted, only the first one will be taken in acco
),
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Output Images Folder.',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/ConvertMesh.py b/meshroom/nodes/aliceVision/ConvertMesh.py
index 55dac2dc..9ea7b570 100644
--- a/meshroom/nodes/aliceVision/ConvertMesh.py
+++ b/meshroom/nodes/aliceVision/ConvertMesh.py
@@ -41,7 +41,7 @@ class ConvertMesh(desc.CommandLineNode):
outputs = [
desc.File(
name='output',
- label='Output Mesh',
+ label='Mesh',
description='''Output mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).''',
value=desc.Node.internalFolder + 'mesh.' + '{outputMeshFileTypeValue}',
uid=[],
diff --git a/meshroom/nodes/aliceVision/DepthMap.py b/meshroom/nodes/aliceVision/DepthMap.py
index d7ecc256..6f150854 100644
--- a/meshroom/nodes/aliceVision/DepthMap.py
+++ b/meshroom/nodes/aliceVision/DepthMap.py
@@ -293,7 +293,7 @@ Use a downscale factor of one (full-resolution) only if the quality of the input
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Output folder for generated depth maps.',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/DistortionCalibration.py b/meshroom/nodes/aliceVision/DistortionCalibration.py
index 87fa9606..8f006062 100644
--- a/meshroom/nodes/aliceVision/DistortionCalibration.py
+++ b/meshroom/nodes/aliceVision/DistortionCalibration.py
@@ -45,7 +45,7 @@ class DistortionCalibration(desc.CommandLineNode):
outputs = [
desc.File(
name='outSfMData',
- label='Output SfmData File',
+ label='SfmData File',
description='Path to the output sfmData file',
value=desc.Node.internalFolder + 'sfmData.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/ExportAnimatedCamera.py b/meshroom/nodes/aliceVision/ExportAnimatedCamera.py
index 4eb378d8..1fc1ac95 100644
--- a/meshroom/nodes/aliceVision/ExportAnimatedCamera.py
+++ b/meshroom/nodes/aliceVision/ExportAnimatedCamera.py
@@ -87,14 +87,14 @@ Based on the input image filenames, it will recognize the input video sequence t
outputs = [
desc.File(
name='output',
- label='Output filepath',
+ label='Filepath',
description='Output filepath for the alembic animated camera.',
value=desc.Node.internalFolder,
uid=[],
),
desc.File(
name='outputCamera',
- label='Output Camera Filepath',
+ label='Camera Filepath',
description='Output filename for the alembic animated camera.',
value=desc.Node.internalFolder + 'camera.abc',
group='', # exclude from command line
@@ -102,7 +102,7 @@ Based on the input image filenames, it will recognize the input video sequence t
),
desc.File(
name='outputUndistorted',
- label='Output Undistorted images Filepath',
+ label='Undistorted images Filepath',
description='Output Undistorted images.',
value=desc.Node.internalFolder + 'undistort',
group='', # exclude from command line
diff --git a/meshroom/nodes/aliceVision/ExportColoredPointCloud.py b/meshroom/nodes/aliceVision/ExportColoredPointCloud.py
index a922a4a9..7ab7855b 100644
--- a/meshroom/nodes/aliceVision/ExportColoredPointCloud.py
+++ b/meshroom/nodes/aliceVision/ExportColoredPointCloud.py
@@ -30,7 +30,7 @@ class ExportColoredPointCloud(desc.CommandLineNode):
outputs = [
desc.File(
name='output',
- label='Output Point Cloud Filepath',
+ label='Point Cloud Filepath',
description='Output point cloud with visibilities as SfMData file.',
value="{cache}/{nodeType}/{uid0}/pointCloud.abc",
uid=[],
diff --git a/meshroom/nodes/aliceVision/ExportMatches.py b/meshroom/nodes/aliceVision/ExportMatches.py
index b90c6358..2a1aeebc 100644
--- a/meshroom/nodes/aliceVision/ExportMatches.py
+++ b/meshroom/nodes/aliceVision/ExportMatches.py
@@ -65,7 +65,7 @@ class ExportMatches(desc.CommandLineNode):
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Output path for the features and descriptors files (*.feat, *.desc).',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/ExportMaya.py b/meshroom/nodes/aliceVision/ExportMaya.py
index aeea1b81..99dacf12 100644
--- a/meshroom/nodes/aliceVision/ExportMaya.py
+++ b/meshroom/nodes/aliceVision/ExportMaya.py
@@ -27,7 +27,7 @@ MeshroomMaya contains a user interface to browse all cameras.
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Folder for MeshroomMaya outputs: undistorted images and thumbnails.',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/FeatureRepeatability.py b/meshroom/nodes/aliceVision/FeatureRepeatability.py
index 12cd9012..ed22cf34 100644
--- a/meshroom/nodes/aliceVision/FeatureRepeatability.py
+++ b/meshroom/nodes/aliceVision/FeatureRepeatability.py
@@ -125,7 +125,7 @@ Compare feature/descriptor matching repeatability on some dataset with known hom
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Output path for the features and descriptors files (*.feat, *.desc).',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/GlobalSfM.py b/meshroom/nodes/aliceVision/GlobalSfM.py
index a400570a..8d6ebe0b 100644
--- a/meshroom/nodes/aliceVision/GlobalSfM.py
+++ b/meshroom/nodes/aliceVision/GlobalSfM.py
@@ -119,7 +119,7 @@ It is known to be faster but less robust to challenging datasets than the Increm
),
desc.File(
name='extraInfoFolder',
- label='Output Folder',
+ label='Folder',
description='Folder for intermediate reconstruction files and additional reconstruction information files.',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py b/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py
index 313534b1..c11776e7 100644
--- a/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py
+++ b/meshroom/nodes/aliceVision/ImageMatchingMultiSfM.py
@@ -141,14 +141,14 @@ Thanks to this node, the FeatureMatching node will only compute the matches betw
outputs = [
desc.File(
name='output',
- label='Output List File',
+ label='List File',
description='Filepath to the output file with the list of selected image pairs.',
value=desc.Node.internalFolder + 'imageMatches.txt',
uid=[],
),
desc.File(
name='outputCombinedSfM',
- label='Output Combined SfM',
+ label='Combined SfM',
description='Path for the combined SfMData file',
value=desc.Node.internalFolder + 'combineSfM.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/ImageProcessing.py b/meshroom/nodes/aliceVision/ImageProcessing.py
index f45361a2..8aaebff6 100644
--- a/meshroom/nodes/aliceVision/ImageProcessing.py
+++ b/meshroom/nodes/aliceVision/ImageProcessing.py
@@ -325,7 +325,7 @@ Convert or apply filtering to the input images.
outputs = [
desc.File(
name='outSfMData',
- label='Output sfmData',
+ label='SfmData',
description='Output sfmData.',
value=lambda attr: (desc.Node.internalFolder + os.path.basename(attr.node.input.value)) if (os.path.splitext(attr.node.input.value)[1] in ['.abc', '.sfm']) else '',
uid=[],
@@ -333,14 +333,14 @@ Convert or apply filtering to the input images.
),
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Output Images Folder.',
value=desc.Node.internalFolder,
uid=[],
),
desc.File(
name='outputImages',
- label='Output Images',
+ label='Images',
description='Output Image Files.',
semantic='image',
value= outputImagesValueFunct,
diff --git a/meshroom/nodes/aliceVision/KeyframeSelection.py b/meshroom/nodes/aliceVision/KeyframeSelection.py
index e1037cd3..63ecb1f6 100644
--- a/meshroom/nodes/aliceVision/KeyframeSelection.py
+++ b/meshroom/nodes/aliceVision/KeyframeSelection.py
@@ -182,7 +182,7 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
outputs = [
desc.File(
name='outputFolder',
- label='Output Folder',
+ label='Folder',
description='''Output keyframes folder for extracted frames.''',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/LdrToHdrCalibration.py b/meshroom/nodes/aliceVision/LdrToHdrCalibration.py
index 5b6ebbbf..a50cd8f5 100644
--- a/meshroom/nodes/aliceVision/LdrToHdrCalibration.py
+++ b/meshroom/nodes/aliceVision/LdrToHdrCalibration.py
@@ -139,7 +139,7 @@ class LdrToHdrCalibration(desc.CommandLineNode):
outputs = [
desc.File(
name='response',
- label='Output response File',
+ label='Response File',
description='Path to the output response file',
value=desc.Node.internalFolder + 'response.csv',
uid=[],
diff --git a/meshroom/nodes/aliceVision/LdrToHdrMerge.py b/meshroom/nodes/aliceVision/LdrToHdrMerge.py
index 391ae9e3..cc1ee60f 100644
--- a/meshroom/nodes/aliceVision/LdrToHdrMerge.py
+++ b/meshroom/nodes/aliceVision/LdrToHdrMerge.py
@@ -177,7 +177,7 @@ class LdrToHdrMerge(desc.CommandLineNode):
outputs = [
desc.File(
name='outSfMData',
- label='Output SfMData File',
+ label='SfMData File',
description='Path to the output sfmdata file',
value=desc.Node.internalFolder + 'sfmData.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/LdrToHdrSampling.py b/meshroom/nodes/aliceVision/LdrToHdrSampling.py
index a32f86c1..3324733b 100644
--- a/meshroom/nodes/aliceVision/LdrToHdrSampling.py
+++ b/meshroom/nodes/aliceVision/LdrToHdrSampling.py
@@ -146,7 +146,7 @@ class LdrToHdrSampling(desc.CommandLineNode):
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Output path for the samples.',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/LightingEstimation.py b/meshroom/nodes/aliceVision/LightingEstimation.py
index c9d44b1a..077b3538 100644
--- a/meshroom/nodes/aliceVision/LightingEstimation.py
+++ b/meshroom/nodes/aliceVision/LightingEstimation.py
@@ -83,7 +83,7 @@ class LightingEstimation(desc.CommandLineNode):
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='Folder for output lighting vector files.',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/MergeMeshes.py b/meshroom/nodes/aliceVision/MergeMeshes.py
index 1669dde5..739e5b04 100644
--- a/meshroom/nodes/aliceVision/MergeMeshes.py
+++ b/meshroom/nodes/aliceVision/MergeMeshes.py
@@ -69,7 +69,7 @@ Operation types used to merge two meshes:
outputs = [
desc.File(
name='output',
- label='Output mesh',
+ label='Mesh',
description='''Output mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).''',
value=desc.Node.internalFolder + 'mesh.stl',
uid=[],
diff --git a/meshroom/nodes/aliceVision/MeshDecimate.py b/meshroom/nodes/aliceVision/MeshDecimate.py
index 4294e858..29b51e42 100644
--- a/meshroom/nodes/aliceVision/MeshDecimate.py
+++ b/meshroom/nodes/aliceVision/MeshDecimate.py
@@ -77,7 +77,7 @@ This node allows to reduce the density of the Mesh.
outputs = [
desc.File(
name="output",
- label="Output mesh",
+ label="Mesh",
description="Output mesh (OBJ file format).",
value=desc.Node.internalFolder + 'mesh.obj',
uid=[],
diff --git a/meshroom/nodes/aliceVision/MeshMasking.py b/meshroom/nodes/aliceVision/MeshMasking.py
index 9188072b..1888f563 100644
--- a/meshroom/nodes/aliceVision/MeshMasking.py
+++ b/meshroom/nodes/aliceVision/MeshMasking.py
@@ -100,7 +100,7 @@ Decimate triangles based on image masks.
outputs = [
desc.File(
name='outputMesh',
- label='Output Mesh',
+ label='Mesh',
description='''Output mesh.''',
value=desc.Node.internalFolder + 'mesh.{outputMeshFileTypeValue}',
uid=[],
diff --git a/meshroom/nodes/aliceVision/MeshResampling.py b/meshroom/nodes/aliceVision/MeshResampling.py
index d9a836cd..047d572b 100644
--- a/meshroom/nodes/aliceVision/MeshResampling.py
+++ b/meshroom/nodes/aliceVision/MeshResampling.py
@@ -82,7 +82,7 @@ This node allows to recompute the mesh surface with a new topology and uniform d
outputs = [
desc.File(
name="output",
- label="Output mesh",
+ label="Mesh",
description="Output mesh (OBJ file format).",
value=desc.Node.internalFolder + 'mesh.obj',
uid=[],
diff --git a/meshroom/nodes/aliceVision/PanoramaCompositing.py b/meshroom/nodes/aliceVision/PanoramaCompositing.py
index 896759e7..756d76db 100644
--- a/meshroom/nodes/aliceVision/PanoramaCompositing.py
+++ b/meshroom/nodes/aliceVision/PanoramaCompositing.py
@@ -106,7 +106,7 @@ Multiple cameras are contributing to the low frequencies and only the best one c
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description='',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/PanoramaEstimation.py b/meshroom/nodes/aliceVision/PanoramaEstimation.py
index 6e78dd7c..476d29b1 100644
--- a/meshroom/nodes/aliceVision/PanoramaEstimation.py
+++ b/meshroom/nodes/aliceVision/PanoramaEstimation.py
@@ -178,14 +178,14 @@ Estimate relative camera rotations between input images.
outputs = [
desc.File(
name='output',
- label='Output SfMData File',
+ label='SfMData File',
description='Path to the output sfmdata file',
value=desc.Node.internalFolder + 'panorama.abc',
uid=[],
),
desc.File(
name='outputViewsAndPoses',
- label='Output Poses',
+ label='Poses',
description='''Path to the output sfmdata file with cameras (views and poses).''',
value=desc.Node.internalFolder + 'cameras.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/PanoramaInit.py b/meshroom/nodes/aliceVision/PanoramaInit.py
index 947f0922..edac5cd6 100644
--- a/meshroom/nodes/aliceVision/PanoramaInit.py
+++ b/meshroom/nodes/aliceVision/PanoramaInit.py
@@ -156,7 +156,7 @@ This node allows to setup the Panorama:
outputs = [
desc.File(
name='outSfMData',
- label='Output SfMData File',
+ label='SfMData File',
description='Path to the output sfmdata file',
value=desc.Node.internalFolder + 'sfmData.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/PanoramaMerging.py b/meshroom/nodes/aliceVision/PanoramaMerging.py
index bfe45805..f0fc6fca 100644
--- a/meshroom/nodes/aliceVision/PanoramaMerging.py
+++ b/meshroom/nodes/aliceVision/PanoramaMerging.py
@@ -69,7 +69,7 @@ Merge all inputs coming from the PanoramaCompositing node.
outputs = [
desc.File(
name='outputPanorama',
- label='Output Folder',
+ label='Panorama',
description='',
semantic='image',
value=desc.Node.internalFolder + 'panorama.{outputFileTypeValue}',
diff --git a/meshroom/nodes/aliceVision/PanoramaPrepareImages.py b/meshroom/nodes/aliceVision/PanoramaPrepareImages.py
index 1add6c47..89099f19 100644
--- a/meshroom/nodes/aliceVision/PanoramaPrepareImages.py
+++ b/meshroom/nodes/aliceVision/PanoramaPrepareImages.py
@@ -36,7 +36,7 @@ Prepare images for Panorama pipeline: ensures that images orientations are coher
outputs = [
desc.File(
name='output',
- label='Output sfmData',
+ label='SfmData',
description='Output sfmData.',
value=lambda attr: desc.Node.internalFolder + os.path.basename(attr.node.input.value),
uid=[],
diff --git a/meshroom/nodes/aliceVision/PanoramaSeams.py b/meshroom/nodes/aliceVision/PanoramaSeams.py
index c36beb92..6817d984 100644
--- a/meshroom/nodes/aliceVision/PanoramaSeams.py
+++ b/meshroom/nodes/aliceVision/PanoramaSeams.py
@@ -61,7 +61,7 @@ Estimate the seams lines between the inputs to provide an optimal compositing in
outputs = [
desc.File(
name='output',
- label='Output Labels',
+ label='Labels',
description='',
value=desc.Node.internalFolder + 'labels.exr',
uid=[],
diff --git a/meshroom/nodes/aliceVision/PanoramaWarping.py b/meshroom/nodes/aliceVision/PanoramaWarping.py
index 7710527a..99a38d5c 100644
--- a/meshroom/nodes/aliceVision/PanoramaWarping.py
+++ b/meshroom/nodes/aliceVision/PanoramaWarping.py
@@ -92,7 +92,7 @@ Compute the image warping for each input image in the panorama coordinate system
outputs = [
desc.File(
name='output',
- label='Output directory',
+ label='Folder',
description='',
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/SfMAlignment.py b/meshroom/nodes/aliceVision/SfMAlignment.py
index 60d6d2e3..accd9bfb 100644
--- a/meshroom/nodes/aliceVision/SfMAlignment.py
+++ b/meshroom/nodes/aliceVision/SfMAlignment.py
@@ -110,14 +110,14 @@ The alignment can be based on:
outputs = [
desc.File(
name='output',
- label='Output SfMData File',
+ label='SfMData File',
description='SfMData file.',
value=lambda attr: desc.Node.internalFolder + (os.path.splitext(os.path.basename(attr.node.input.value))[0] or 'sfmData') + '.abc',
uid=[],
),
desc.File(
name='outputViewsAndPoses',
- label='Output Poses',
+ label='Poses',
description='''Path to the output sfmdata file with cameras (views and poses).''',
value=desc.Node.internalFolder + 'cameras.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/SfMTransfer.py b/meshroom/nodes/aliceVision/SfMTransfer.py
index dd0f8c4a..edc5acff 100644
--- a/meshroom/nodes/aliceVision/SfMTransfer.py
+++ b/meshroom/nodes/aliceVision/SfMTransfer.py
@@ -94,14 +94,14 @@ This node allows to transfer poses and/or intrinsics form one SfM scene onto ano
outputs = [
desc.File(
name='output',
- label='Output SfMData File',
+ label='SfMData File',
description='SfMData file.',
value=lambda attr: desc.Node.internalFolder + (os.path.splitext(os.path.basename(attr.node.input.value))[0] or 'sfmData') + '.abc',
uid=[],
),
desc.File(
name='outputViewsAndPoses',
- label='Output Poses',
+ label='Poses',
description='''Path to the output sfmdata file with cameras (views and poses).''',
value=desc.Node.internalFolder + 'cameras.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/SfMTransform.py b/meshroom/nodes/aliceVision/SfMTransform.py
index 0466ec50..439ba3af 100644
--- a/meshroom/nodes/aliceVision/SfMTransform.py
+++ b/meshroom/nodes/aliceVision/SfMTransform.py
@@ -197,14 +197,14 @@ The transformation can be based on:
outputs = [
desc.File(
name='output',
- label='Output SfMData File',
+ label='SfMData File',
description='''Aligned SfMData file .''',
value=lambda attr: desc.Node.internalFolder + (os.path.splitext(os.path.basename(attr.node.input.value))[0] or 'sfmData') + '.abc',
uid=[],
),
desc.File(
name='outputViewsAndPoses',
- label='Output Poses',
+ label='Poses',
description='''Path to the output sfmdata file with cameras (views and poses).''',
value=desc.Node.internalFolder + 'cameras.sfm',
uid=[],
diff --git a/meshroom/nodes/aliceVision/Split360Images.py b/meshroom/nodes/aliceVision/Split360Images.py
index daee4598..4ff56bb9 100644
--- a/meshroom/nodes/aliceVision/Split360Images.py
+++ b/meshroom/nodes/aliceVision/Split360Images.py
@@ -89,7 +89,7 @@ class Split360Images(desc.CommandLineNode):
outputs = [
desc.File(
name='output',
- label='Output Folder',
+ label='Folder',
description="Output folder for extracted frames.",
value=desc.Node.internalFolder,
uid=[],
diff --git a/meshroom/nodes/aliceVision/StructureFromMotion.py b/meshroom/nodes/aliceVision/StructureFromMotion.py
index 4cacd6a1..08a4541c 100644
--- a/meshroom/nodes/aliceVision/StructureFromMotion.py
+++ b/meshroom/nodes/aliceVision/StructureFromMotion.py
@@ -367,7 +367,7 @@ It iterates like that, adding cameras and triangulating new 2D features into 3D
),
desc.File(
name='extraInfoFolder',
- label='Output Folder',
+ label='Folder',
description='Folder for intermediate reconstruction files and additional reconstruction information files.',
value=desc.Node.internalFolder,
uid=[],