mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 09:56:32 +02:00
[nodes][aliceVision] mark advanced parameters
This commit is contained in:
parent
8ada834447
commit
168b573e36
12 changed files with 79 additions and 8 deletions
|
@ -60,6 +60,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
values=('BRUTE_FORCE_L2', 'ANN_L2', 'CASCADE_HASHING_L2', 'FAST_CASCADE_HASHING_L2', 'BRUTE_FORCE_HAMMING'),
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='geometricEstimator',
|
||||
|
@ -69,6 +70,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
values=['acransac', 'loransac'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='geometricFilterType',
|
||||
|
@ -83,6 +85,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
values=['fundamental_matrix', 'essential_matrix', 'homography_matrix', 'homography_growing', 'no_filtering'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
name='distanceRatio',
|
||||
|
@ -91,6 +94,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
value=0.8,
|
||||
range=(0.0, 1.0, 0.01),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name='maxIteration',
|
||||
|
@ -99,6 +103,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
value=2048,
|
||||
range=(1, 20000, 1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name='maxMatches',
|
||||
|
@ -107,6 +112,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
value=0,
|
||||
range=(0, 10000, 1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='savePutativeMatches',
|
||||
|
@ -114,6 +120,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
description='putative matches.',
|
||||
value=False,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='guidedMatching',
|
||||
|
@ -128,6 +135,7 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
description='debug files (svg, dot).',
|
||||
value=False,
|
||||
uid=[],
|
||||
advanced=True
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue