mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-04 11:51:58 +02:00
[nodes] Directly use internalFolder
variable for outputs' paths
This commit is contained in:
parent
e077e8cb36
commit
248c301c5a
2 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ class ExportColoredPointCloud(desc.AVCommandLineNode):
|
|||
name="output",
|
||||
label="Point Cloud Filepath",
|
||||
description="Output point cloud with visibilities as SfMData file.",
|
||||
value="{cache}/{nodeType}/{uid0}/pointCloud.abc",
|
||||
value=desc.Node.internalFolder + "pointCloud.abc",
|
||||
uid=[],
|
||||
),
|
||||
]
|
||||
|
|
|
@ -526,14 +526,14 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
|
|||
name="outputMesh",
|
||||
label="Mesh",
|
||||
description="Output mesh.",
|
||||
value="{cache}/{nodeType}/{uid0}/mesh.{outputMeshFileTypeValue}",
|
||||
value=desc.Node.internalFolder + "mesh.{outputMeshFileTypeValue}",
|
||||
uid=[],
|
||||
),
|
||||
desc.File(
|
||||
name="output",
|
||||
label="Dense SfMData",
|
||||
description="Output dense point cloud with visibilities (SfMData file format).",
|
||||
value="{cache}/{nodeType}/{uid0}/densePointCloud.abc",
|
||||
value=desc.Node.internalFolder + "densePointCloud.abc",
|
||||
uid=[],
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue