mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-26 04:57:18 +02:00
[nodes][aliceVision] use user-friendly atribute labels
This commit is contained in:
parent
efb8e1ed67
commit
ac149e1e51
11 changed files with 33 additions and 33 deletions
|
@ -153,7 +153,7 @@ class CameraInit(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output SfMData File',
|
label='SfMData',
|
||||||
description='''Output SfMData.''',
|
description='''Output SfMData.''',
|
||||||
value=desc.Node.internalFolder + 'cameraInit.sfm',
|
value=desc.Node.internalFolder + 'cameraInit.sfm',
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -13,7 +13,7 @@ class DepthMap(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfMData',
|
||||||
description='SfMData file.',
|
description='SfMData file.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
|
|
@ -13,14 +13,14 @@ class DepthMapFilter(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfMData',
|
||||||
description='SfMData file.',
|
description='SfMData file.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="depthMapsFolder",
|
name="depthMapsFolder",
|
||||||
label="Depth Maps Folder",
|
label="DepthMaps Folder",
|
||||||
description="Input depth maps folder",
|
description="Input depth maps folder",
|
||||||
value="",
|
value="",
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -108,7 +108,7 @@ class DepthMapFilter(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output',
|
label='Filtered DepthMaps Folder',
|
||||||
description='Output folder for generated depth maps.',
|
description='Output folder for generated depth maps.',
|
||||||
value=desc.Node.internalFolder,
|
value=desc.Node.internalFolder,
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -12,7 +12,7 @@ class FeatureExtraction(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfMData',
|
||||||
description='SfMData file.',
|
description='SfMData file.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -67,7 +67,7 @@ class FeatureExtraction(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output Folder',
|
label='Features Folder',
|
||||||
description='Output path for the features and descriptors files (*.feat, *.desc).',
|
description='Output path for the features and descriptors files (*.feat, *.desc).',
|
||||||
value=desc.Node.internalFolder,
|
value=desc.Node.internalFolder,
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -12,7 +12,7 @@ class FeatureMatching(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfMData',
|
||||||
description='SfMData file.',
|
description='SfMData file.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -31,7 +31,7 @@ class FeatureMatching(desc.CommandLineNode):
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='imagePairsList',
|
name='imagePairsList',
|
||||||
label='Image Pairs List',
|
label='Image Pairs',
|
||||||
description='Path to a file which contains the list of image pairs to match.',
|
description='Path to a file which contains the list of image pairs to match.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -161,7 +161,7 @@ class FeatureMatching(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output Folder',
|
label='Matches Folder',
|
||||||
description='Path to a folder in which computed matches will be stored.',
|
description='Path to a folder in which computed matches will be stored.',
|
||||||
value=desc.Node.internalFolder,
|
value=desc.Node.internalFolder,
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -11,7 +11,7 @@ class ImageMatching(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfmData',
|
||||||
description='SfMData file .',
|
description='SfMData file .',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -84,7 +84,7 @@ class ImageMatching(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output List File',
|
label='Image Pairs',
|
||||||
description='Filepath to the output file with the list of selected image pairs.',
|
description='Filepath to the output file with the list of selected image pairs.',
|
||||||
value=desc.Node.internalFolder + 'imageMatches.txt',
|
value=desc.Node.internalFolder + 'imageMatches.txt',
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -9,7 +9,7 @@ class MeshFiltering(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='inputMesh',
|
name='inputMesh',
|
||||||
label='Input Mesh',
|
label='Mesh',
|
||||||
description='''Input Mesh (OBJ file format).''',
|
description='''Input Mesh (OBJ file format).''',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -60,7 +60,7 @@ class MeshFiltering(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='outputMesh',
|
name='outputMesh',
|
||||||
label='Output Mesh',
|
label='Mesh',
|
||||||
description='''Output mesh (OBJ file format).''',
|
description='''Output mesh (OBJ file format).''',
|
||||||
value=desc.Node.internalFolder + 'mesh.obj',
|
value=desc.Node.internalFolder + 'mesh.obj',
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -12,14 +12,14 @@ class Meshing(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfmData',
|
||||||
description='SfMData file.',
|
description='SfMData file.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="depthMapsFolder",
|
name="depthMapsFolder",
|
||||||
label='Depth Maps Folder',
|
label='DepthMaps Folder',
|
||||||
description='Input depth maps folder',
|
description='Input depth maps folder',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -238,14 +238,14 @@ class Meshing(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name="outputMesh",
|
name="outputMesh",
|
||||||
label="Output Mesh",
|
label="Mesh",
|
||||||
description="Output mesh (OBJ file format).",
|
description="Output mesh (OBJ file format).",
|
||||||
value="{cache}/{nodeType}/{uid0}/mesh.obj",
|
value="{cache}/{nodeType}/{uid0}/mesh.obj",
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="output",
|
name="output",
|
||||||
label="Output Dense Point Cloud",
|
label="Dense SfMData",
|
||||||
description="Output dense point cloud with visibilities (SfMData file format).",
|
description="Output dense point cloud with visibilities (SfMData file format).",
|
||||||
value="{cache}/{nodeType}/{uid0}/densePointCloud.abc",
|
value="{cache}/{nodeType}/{uid0}/densePointCloud.abc",
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -12,7 +12,7 @@ class PrepareDenseScene(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfMData',
|
||||||
description='''SfMData file.''',
|
description='''SfMData file.''',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -77,14 +77,14 @@ class PrepareDenseScene(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output',
|
label='Images Folder',
|
||||||
description='''Output folder.''',
|
description='''Output folder.''',
|
||||||
value=desc.Node.internalFolder,
|
value=desc.Node.internalFolder,
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='outputUndistorted',
|
name='outputUndistorted',
|
||||||
label='Undistorted images',
|
label='Undistorted Images',
|
||||||
description='List of undistorted images.',
|
description='List of undistorted images.',
|
||||||
value=desc.Node.internalFolder + '*.{outputFileTypeValue}',
|
value=desc.Node.internalFolder + '*.{outputFileTypeValue}',
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -13,7 +13,7 @@ class StructureFromMotion(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='SfMData',
|
||||||
description='SfMData file.',
|
description='SfMData file.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -245,14 +245,14 @@ class StructureFromMotion(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output SfMData File',
|
label='SfMData',
|
||||||
description='Path to the output sfmdata file',
|
description='Path to the output sfmdata file',
|
||||||
value=desc.Node.internalFolder + 'sfm.abc',
|
value=desc.Node.internalFolder + 'sfm.abc',
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='outputViewsAndPoses',
|
name='outputViewsAndPoses',
|
||||||
label='Output SfMData File',
|
label='Views and Poses',
|
||||||
description='''Path to the output sfmdata file with cameras (views and poses).''',
|
description='''Path to the output sfmdata file with cameras (views and poses).''',
|
||||||
value=desc.Node.internalFolder + 'cameras.sfm',
|
value=desc.Node.internalFolder + 'cameras.sfm',
|
||||||
uid=[],
|
uid=[],
|
||||||
|
|
|
@ -10,7 +10,7 @@ class Texturing(desc.CommandLineNode):
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='Input',
|
label='Dense SfMData',
|
||||||
description='SfMData file.',
|
description='SfMData file.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -24,7 +24,7 @@ class Texturing(desc.CommandLineNode):
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='inputMesh',
|
name='inputMesh',
|
||||||
label='Other Input Mesh',
|
label='Mesh',
|
||||||
description='Optional input mesh to texture. By default, it will texture the result of the reconstruction.',
|
description='Optional input mesh to texture. By default, it will texture the result of the reconstruction.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -197,31 +197,31 @@ class Texturing(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output Folder',
|
label='Folder',
|
||||||
description='Folder for output mesh: OBJ, material and texture files.',
|
description='Folder for output mesh: OBJ, material and texture files.',
|
||||||
value=desc.Node.internalFolder,
|
value=desc.Node.internalFolder,
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='outputMesh',
|
name='outputMesh',
|
||||||
label='Output Mesh',
|
label='Mesh',
|
||||||
description='Folder for output mesh: OBJ, material and texture files.',
|
description='Output Mesh file.',
|
||||||
value=desc.Node.internalFolder + 'texturedMesh.obj',
|
value=desc.Node.internalFolder + 'texturedMesh.obj',
|
||||||
uid=[],
|
uid=[],
|
||||||
group='',
|
group='',
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='outputMaterial',
|
name='outputMaterial',
|
||||||
label='Output Material',
|
label='Material',
|
||||||
description='Folder for output mesh: OBJ, material and texture files.',
|
description='Output Material file.',
|
||||||
value=desc.Node.internalFolder + 'texturedMesh.mtl',
|
value=desc.Node.internalFolder + 'texturedMesh.mtl',
|
||||||
uid=[],
|
uid=[],
|
||||||
group='',
|
group='',
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='outputTextures',
|
name='outputTextures',
|
||||||
label='Output Textures',
|
label='Textures',
|
||||||
description='Folder for output mesh: OBJ, material and texture files.',
|
description='Output Texture files.',
|
||||||
value=desc.Node.internalFolder + 'texture_*.{outputTextureFileTypeValue}',
|
value=desc.Node.internalFolder + 'texture_*.{outputTextureFileTypeValue}',
|
||||||
uid=[],
|
uid=[],
|
||||||
group='',
|
group='',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue