From 4e130e70908f560eb7e8d2561c6a451e6111d78a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Vital?= Date: Fri, 9 Jun 2023 15:12:04 +0200 Subject: [PATCH] [nodes] DepthMap: fix uid of intermediate export attributes --- meshroom/nodes/aliceVision/DepthMap.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meshroom/nodes/aliceVision/DepthMap.py b/meshroom/nodes/aliceVision/DepthMap.py index 4e0bb79e..7161fbcd 100644 --- a/meshroom/nodes/aliceVision/DepthMap.py +++ b/meshroom/nodes/aliceVision/DepthMap.py @@ -391,7 +391,7 @@ Use a downscale factor of one (full-resolution) only if the quality of the input label='Export Depth Maps', description='Export intermediate depth/similarity maps from the SGM and Refine steps.', value=False, - uid=[], + uid=[0], advanced=True, ), desc.BoolParam( @@ -399,7 +399,7 @@ Use a downscale factor of one (full-resolution) only if the quality of the input label='Export Volumes', description='Export intermediate full similarity volumes from the SGM and Refine steps.', value=False, - uid=[], + uid=[0], advanced=True, ), desc.BoolParam( @@ -407,7 +407,7 @@ Use a downscale factor of one (full-resolution) only if the quality of the input label='Export Cross Volumes', description='Export intermediate similarity cross volumes from the SGM and Refine steps.', value=False, - uid=[], + uid=[0], advanced=True, ), desc.BoolParam( @@ -415,7 +415,7 @@ Use a downscale factor of one (full-resolution) only if the quality of the input label='Export 9 Points', description='Export intermediate volumes 9 points from the SGM and Refine steps in CSV files.', value=False, - uid=[], + uid=[0], advanced=True, ), desc.BoolParam( @@ -423,7 +423,7 @@ Use a downscale factor of one (full-resolution) only if the quality of the input label='Export Tile Pattern', description='Export the bounding boxes of tiles volumes as meshes. This allows to visualize the depth map search areas.', value=False, - uid=[], + uid=[0], advanced=True, ), ]),