[nodes] DepthMap: fix uid of intermediate export attributes

This commit is contained in:
Loïc Vital 2023-06-09 15:12:04 +02:00
parent 79305b80ed
commit 4e130e7090

View file

@ -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,
),
]),