File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
meshroom/nodes/DepthEstimation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ]
You can’t perform that action at this time.
0 commit comments