mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-06 04:41: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",
|
name="output",
|
||||||
label="Point Cloud Filepath",
|
label="Point Cloud Filepath",
|
||||||
description="Output point cloud with visibilities as SfMData file.",
|
description="Output point cloud with visibilities as SfMData file.",
|
||||||
value="{cache}/{nodeType}/{uid0}/pointCloud.abc",
|
value=desc.Node.internalFolder + "pointCloud.abc",
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
@ -526,14 +526,14 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
|
||||||
name="outputMesh",
|
name="outputMesh",
|
||||||
label="Mesh",
|
label="Mesh",
|
||||||
description="Output mesh.",
|
description="Output mesh.",
|
||||||
value="{cache}/{nodeType}/{uid0}/mesh.{outputMeshFileTypeValue}",
|
value=desc.Node.internalFolder + "mesh.{outputMeshFileTypeValue}",
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="output",
|
name="output",
|
||||||
label="Dense SfMData",
|
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=desc.Node.internalFolder + "densePointCloud.abc",
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue