[nodes] update aliceVision nodes

* remove non-pertinent parameters
* fix parameters types / description
* tweak value ranges
* fix incorrect uids
* update default values
This commit is contained in:
Yann Lanthony 2017-11-13 20:31:16 +01:00
parent 2a029834db
commit 5d40790555
5 changed files with 24 additions and 42 deletions

View file

@ -42,7 +42,7 @@ class ImageMatching(desc.CommandLineNode):
label='Max Descriptors',
description='''Limit the number of descriptors you load per image. Zero means no limit.''',
value=500,
range=(-sys.maxsize, sys.maxsize, 1),
range=(0, 100000, 1),
uid=[0],
),
desc.IntParam(
@ -50,13 +50,13 @@ class ImageMatching(desc.CommandLineNode):
label='Nb Matches',
description='''The number of matches to retrieve for each image (If 0 it will retrieve all the matches).''',
value=50,
range=(-sys.maxsize, sys.maxsize, 1),
range=(0, 1000, 1),
uid=[0],
),
desc.File(
name='weights',
label='Weights',
description='''Input name for the weight file, if not provided the weights will be computed on the database built with the provided set. Log parameters:''',
description='''Input name for the weight file, if not provided the weights will be computed on the database built with the provided set.''',
value='',
uid=[0],
),