mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
Merge pull request #2693 from alicevision/dev/relativePathsUpdate
[nodes] Replace `desc.Node.internalFolder` with `{nodeCacheFolder}`
This commit is contained in:
commit
08614a398d
2 changed files with 4 additions and 4 deletions
|
@ -69,14 +69,14 @@ class ExportImages(desc.AVCommandLineNode):
|
||||||
name="output",
|
name="output",
|
||||||
label="Images Folder",
|
label="Images Folder",
|
||||||
description="Output folder.",
|
description="Output folder.",
|
||||||
value=desc.Node.internalFolder,
|
value="{nodeCacheFolder}",
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="undistorted",
|
name="undistorted",
|
||||||
label="Undistorted Images",
|
label="Undistorted Images",
|
||||||
description="List of undistorted images.",
|
description="List of undistorted images.",
|
||||||
semantic="image",
|
semantic="image",
|
||||||
value=desc.Node.internalFolder + "<VIEW_ID>.{outputFileTypeValue}",
|
value="{nodeCacheFolder}/<VIEW_ID>.{outputFileTypeValue}",
|
||||||
group="",
|
group="",
|
||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
|
|
|
@ -56,12 +56,12 @@ class IntrinsicsTransforming(desc.AVCommandLineNode):
|
||||||
name="output",
|
name="output",
|
||||||
label="Output SfMData",
|
label="Output SfMData",
|
||||||
description="Output SfMData file.",
|
description="Output SfMData file.",
|
||||||
value=desc.Node.internalFolder + "sfmData.abc",
|
value="{nodeCacheFolder}/sfmData.abc",
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="outputTracks",
|
name="outputTracks",
|
||||||
label="Output Tracks",
|
label="Output Tracks",
|
||||||
description="Output Tracks file.",
|
description="Output Tracks file.",
|
||||||
value=desc.Node.internalFolder + "tracksFile.json",
|
value="{nodeCacheFolder}/tracksFile.json",
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue