From 09c8ec6e3965cc80d91f8e5efeb64bcbe4fa4a5c Mon Sep 17 00:00:00 2001 From: jmelou Date: Wed, 5 Jun 2024 15:27:31 +0200 Subject: [PATCH] [node] Normal integration : export one maps per pose --- meshroom/nodes/aliceVision/NormalIntegration.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/meshroom/nodes/aliceVision/NormalIntegration.py b/meshroom/nodes/aliceVision/NormalIntegration.py index e1fcebd7..523e8629 100644 --- a/meshroom/nodes/aliceVision/NormalIntegration.py +++ b/meshroom/nodes/aliceVision/NormalIntegration.py @@ -47,10 +47,12 @@ Evaluate a depth map from a normals map (currently in development) outputs = [ desc.File( - name="outputPath", - label="Output Path", - description="Path to the output folder.", - value=desc.Node.internalFolder, + name="depthMap", + label="Depth Map Camera", + description="Generated depth in the camera coordinate system.", + semantic="image", + value=desc.Node.internalFolder + "_depthMap.exr", uid=[], - ), + group="", # do not export on the command line + ) ]