mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 09:47:20 +02:00
[nodes] Replace desc.Node.internalFolder
with {nodeCacheFolder}
For nodes that were added right before the merge of #2629, the replacement still needed to be done.
This commit is contained in:
parent
21afd053f8
commit
091dbddcd3
2 changed files with 4 additions and 4 deletions
|
@ -69,14 +69,14 @@ class ExportImages(desc.AVCommandLineNode):
|
|||
name="output",
|
||||
label="Images Folder",
|
||||
description="Output folder.",
|
||||
value=desc.Node.internalFolder,
|
||||
value="{nodeCacheFolder}",
|
||||
),
|
||||
desc.File(
|
||||
name="undistorted",
|
||||
label="Undistorted Images",
|
||||
description="List of undistorted images.",
|
||||
semantic="image",
|
||||
value=desc.Node.internalFolder + "<VIEW_ID>.{outputFileTypeValue}",
|
||||
value="{nodeCacheFolder}/<VIEW_ID>.{outputFileTypeValue}",
|
||||
group="",
|
||||
advanced=True,
|
||||
),
|
||||
|
|
|
@ -56,12 +56,12 @@ class IntrinsicsTransforming(desc.AVCommandLineNode):
|
|||
name="output",
|
||||
label="Output SfMData",
|
||||
description="Output SfMData file.",
|
||||
value=desc.Node.internalFolder + "sfmData.abc",
|
||||
value="{nodeCacheFolder}/sfmData.abc",
|
||||
),
|
||||
desc.File(
|
||||
name="outputTracks",
|
||||
label="Output Tracks",
|
||||
description="Output Tracks file.",
|
||||
value=desc.Node.internalFolder + "tracksFile.json",
|
||||
value="{nodeCacheFolder}/tracksFile.json",
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue