[nodes] DepthMap: clean param labels

This commit is contained in:
Fabien Castan 2017-12-12 19:52:46 +01:00
parent 2b8fc5bde2
commit 6b222e124d

View file

@ -11,111 +11,111 @@ class DepthMap(desc.CommandLineNode):
inputs = [
desc.File(
name="ini",
label='MVS Configuration file',
label='MVS Configuration File',
description='',
value='',
uid=[0],
),
desc.IntParam(
name='sgmMaxTCams',
label='SGM Max TCams',
description='Semi Global Matching Number of neighbour cameras.',
label='SGM: Nb Neighbour Cameras',
description='Semi Global Matching: Number of neighbour cameras.',
value=10,
range=(1, 100, 1),
uid=[0],
),
desc.IntParam(
name='sgmWSH',
label='SGM WSH',
description='Semi Global Matching Size of the patch used to compute the similarity.',
label='SGM: WSH',
description='Semi Global Matching: Half-size of the patch used to compute the similarity.',
value=4,
range=(1, 20, 1),
uid=[0],
),
desc.FloatParam(
name='sgmGammaC',
label='SGM GammaC',
description='Semi Global Matching GammaC threshold.',
label='SGM: GammaC',
description='Semi Global Matching: GammaC Threshold.',
value=5.5,
range=(0.0, 30.0, 0.5),
uid=[0],
),
desc.FloatParam(
name='sgmGammaP',
label='SGM GammaP',
description='Semi Global Matching GammaP threshold.',
label='SGM: GammaP',
description='Semi Global Matching: GammaP Threshold.',
value=8.0,
range=(0.0, 30.0, 0.5),
uid=[0],
),
desc.IntParam(
name='refineNSamplesHalf',
label='Refine Number of samples',
description='Refine Number of samples.',
label='Refine: Number of Samples',
description='Refine: Number of samples.',
value=150,
range=(1, 500, 10),
uid=[0],
),
desc.IntParam(
name='refineNDepthsToRefine',
label='Refine Number of depths',
description='Refine Number of depths.',
label='Refine: Number of Depths',
description='Refine: Number of depths.',
value=31,
range=(1, 100, 1),
uid=[0],
),
desc.IntParam(
name='refineNiters',
label='Refine Number of iterations',
description='Refine: Number of iterations.',
label='Refine: Number of Iterations',
description='Refine:: Number of iterations.',
value=100,
range=(1, 500, 10),
uid=[0],
),
desc.IntParam(
name='refineWSH',
label='Refine WSH',
description='Refine Size of the patch used to compute the similarity.',
label='Refine: WSH',
description='Refine: Half-size of the patch used to compute the similarity.',
value=3,
range=(1, 20, 1),
uid=[0],
),
desc.IntParam(
name='refineMaxTCams',
label='Refine Max TCams',
description='Refine Number of neighbour cameras.',
label='Refine: Nb Neighbour Cameras',
description='Refine: Number of neighbour cameras.',
value=6,
range=(1, 20, 1),
uid=[0],
),
desc.FloatParam(
name='refineSigma',
label='Refine Sigma',
description='Refine Sigma threshold.',
label='Refine: Sigma',
description='Refine: Sigma Threshold.',
value=15,
range=(0.0, 30.0, 0.5),
uid=[0],
),
desc.FloatParam(
name='refineGammaC',
label='Refine GammaC',
description='Refine GammaC threshold.',
label='Refine: GammaC',
description='Refine: GammaC Threshold.',
value=15.5,
range=(0.0, 30.0, 0.5),
uid=[0],
),
desc.FloatParam(
name='refineGammaP',
label='Refine GammaP',
description='Refine GammaP threshold.',
label='Refine: GammaP',
description='Refine: GammaP threshold.',
value=8.0,
range=(0.0, 30.0, 0.5),
uid=[0],
),
desc.BoolParam(
name='refineUseTcOrRcPixSize',
label='Refine Use Tc or Rc pixel size',
description='Refine Use current camera pixel size or minimum pixel size of neighbour cameras.',
label='Refine: Tc or Rc pixel size',
description='Refine: Use minimum pixel size of neighbour cameras (Tc) or current camera pixel size (Rc)',
value=False,
uid=[0],
),