[nodes][aliceVision] mark advanced parameters

This commit is contained in:
Yann Lanthony 2018-12-12 12:29:19 +01:00
parent 8ada834447
commit 168b573e36
12 changed files with 79 additions and 8 deletions

View file

@ -49,6 +49,7 @@ class ImageMatchingMultiSfM(desc.CommandLineNode):
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],
advanced=True,
),
desc.ChoiceParam(
name='matchingMode',
@ -66,6 +67,7 @@ class ImageMatchingMultiSfM(desc.CommandLineNode):
value=200,
range=(0, 500, 1),
uid=[0],
advanced=True,
),
desc.IntParam(
name='maxDescriptors',
@ -74,6 +76,7 @@ class ImageMatchingMultiSfM(desc.CommandLineNode):
value=500,
range=(0, 100000, 1),
uid=[0],
advanced=True,
),
desc.IntParam(
name='nbMatches',
@ -82,6 +85,7 @@ class ImageMatchingMultiSfM(desc.CommandLineNode):
value=50,
range=(0, 1000, 1),
uid=[0],
advanced=True,
),
desc.ChoiceParam(
name='verboseLevel',