Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions meshroom/aliceVision/ImportAlembic.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@ class ImportAlembic(desc.AVCommandLineNode):
label="SfMData",
description="SfMData file populated with the camera poses from the external Alembic file.",
value="{nodeCacheFolder}/importedAbc.sfm",
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/ImportKnownPoses.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@ class ImportKnownPoses(desc.AVCommandLineNode):
label="Output",
description="Path to the output SfMData file.",
value="{nodeCacheFolder}/sfmData.abc",
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/LidarMerging.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ class LidarMerging(desc.AVCommandLineNode):
label="Mesh Path Output",
description="Output directory for mesh.",
value="{nodeCacheFolder}/output.obj",
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/MergeMeshes.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,6 @@ class MergeMeshes(desc.AVCommandLineNode):
label="Mesh",
description="Output mesh (*.obj, *.mesh, *.meshb, *.ply, *.off, *.stl).",
value="{nodeCacheFolder}/mesh.stl",
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/MeshDecimate.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,6 @@ class MeshDecimate(desc.AVCommandLineNode):
label="Mesh",
description="Output mesh in the OBJ file format.",
value="{nodeCacheFolder}/mesh.obj",
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/MeshDenoising.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,6 @@ class MeshDenoising(desc.AVCommandLineNode):
label="Output",
description="Output mesh in the OBJ file format.",
value="{nodeCacheFolder}/mesh.obj",
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/MeshFiltering.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,6 @@ class MeshFiltering(desc.AVCommandLineNode):
label="Mesh",
description="Output mesh file.",
value="{nodeCacheFolder}/mesh.{outputMeshFileTypeValue}",
semantic="3d",
),
]
3 changes: 2 additions & 1 deletion meshroom/aliceVision/MeshMasking.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,6 @@ class MeshMasking(desc.AVCommandLineNode):
label="Mesh",
description="Output mesh file.",
value="{nodeCacheFolder}/mesh.{outputMeshFileTypeValue}",
),
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/MeshRemoveUnseenFaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,6 @@ class MeshRemoveUnseenFaces(desc.AVCommandLineNode):
label="Mesh",
description="Output mesh file.",
value="{nodeCacheFolder}/mesh.{outputMeshFileTypeValue}",
semantic="3d",
),
]
1 change: 1 addition & 0 deletions meshroom/aliceVision/MeshResampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,6 @@ class MeshResampling(desc.AVCommandLineNode):
label="Mesh",
description="Output mesh in the OBJ file format.",
value="{nodeCacheFolder}/mesh.obj",
semantic="3d",
),
]
2 changes: 2 additions & 0 deletions meshroom/aliceVision/Meshing.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,11 +473,13 @@ class Meshing(desc.AVCommandLineNode):
label="Mesh",
description="Output mesh.",
value="{nodeCacheFolder}/mesh.{outputMeshFileTypeValue}",
semantic="3d",
),
desc.File(
name="output",
label="Dense SfMData",
description="Output dense point cloud with visibilities (SfMData file format).",
value="{nodeCacheFolder}/densePointCloud.abc",
semantic="3d",
),
]
Loading