Skip to content

Commit 6734ea9

Browse files
committed
[nodes] Replace desc.Node.internalFolder with {nodeCacheFolder}
This follows changes introduced in Meshroom: alicevision/Meshroom#2629
1 parent 5fc9daf commit 6734ea9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

meshroom/nodes/DepthEstimation/DepthEstimation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,22 +75,22 @@ class DepthEstimation(desc.Node):
7575
name='output',
7676
label='Output Folder',
7777
description="Output folder containing the estimated depth maps.",
78-
value=desc.Node.internalFolder,
78+
value="{nodeCacheFolder}",
7979
),
8080
desc.File(
8181
name="depthMapVis",
8282
label="Depth Map Visualization",
8383
description="Color mapped output depth maps for visualization purpose",
8484
semantic="imageList",
85-
value=desc.Node.internalFolder + '*/depth_vis.png',
85+
value="{nodeCacheFolder}/*/depth_vis.png",
8686
group="",
8787
),
8888
desc.File(
8989
name="depthMap",
9090
label="Depth Map Output",
9191
description="Output depth maps",
9292
semantic="imageList",
93-
value=desc.Node.internalFolder + '*/depth.exr',
93+
value="{nodeCacheFolder}/*/depth.exr",
9494
group="",
9595
)
9696
]

0 commit comments

Comments
 (0)