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