mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
Merge pull request #2619 from alicevision/dev/sfmBootstraping
Sfm Bootstraping parameterization
This commit is contained in:
commit
6e99f9daeb
3 changed files with 34 additions and 0 deletions
|
@ -31,6 +31,34 @@ class SfMBootStraping(desc.AVCommandLineNode):
|
||||||
description="Information on pairs.",
|
description="Information on pairs.",
|
||||||
value="",
|
value="",
|
||||||
),
|
),
|
||||||
|
desc.FloatParam(
|
||||||
|
name="minAngleInitialPair",
|
||||||
|
label="Min Angle Initial Pair",
|
||||||
|
description="Minimum angle for the initial pair.",
|
||||||
|
value=5.0,
|
||||||
|
range=(0.1, 10.0, 0.1),
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
|
desc.FloatParam(
|
||||||
|
name="maxAngleInitialPair",
|
||||||
|
label="Max Angle Initial Pair",
|
||||||
|
description="Maximum angle for the initial pair.",
|
||||||
|
value=40.0,
|
||||||
|
range=(0.1, 60.0, 0.1),
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
|
desc.File(
|
||||||
|
name="initialPairA",
|
||||||
|
label="Initial Pair A",
|
||||||
|
description="View ID of the first image.",
|
||||||
|
value="",
|
||||||
|
),
|
||||||
|
desc.File(
|
||||||
|
name="initialPairB",
|
||||||
|
label="Initial Pair B",
|
||||||
|
description="View ID of the second image.",
|
||||||
|
value="",
|
||||||
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name="verboseLevel",
|
name="verboseLevel",
|
||||||
label="Verbose Level",
|
label="Verbose Level",
|
||||||
|
|
|
@ -8,6 +8,9 @@ class SfMExpanding(desc.AVCommandLineNode):
|
||||||
commandLine = 'aliceVision_sfmExpanding {allParams}'
|
commandLine = 'aliceVision_sfmExpanding {allParams}'
|
||||||
size = desc.DynamicNodeSize('input')
|
size = desc.DynamicNodeSize('input')
|
||||||
|
|
||||||
|
cpu = desc.Level.INTENSIVE
|
||||||
|
ram = desc.Level.INTENSIVE
|
||||||
|
|
||||||
category = 'Sparse Reconstruction'
|
category = 'Sparse Reconstruction'
|
||||||
documentation = '''
|
documentation = '''
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -19,6 +19,7 @@ It fuses all feature matches between image pairs into tracks. Each track represe
|
||||||
label="SfMData",
|
label="SfMData",
|
||||||
description="Input SfMData file.",
|
description="Input SfMData file.",
|
||||||
value="",
|
value="",
|
||||||
|
exposed=True,
|
||||||
),
|
),
|
||||||
desc.ListAttribute(
|
desc.ListAttribute(
|
||||||
elementDesc=desc.File(
|
elementDesc=desc.File(
|
||||||
|
@ -42,6 +43,7 @@ It fuses all feature matches between image pairs into tracks. Each track represe
|
||||||
name="matchesFolders",
|
name="matchesFolders",
|
||||||
label="Matches Folders",
|
label="Matches Folders",
|
||||||
description="Folder(s) in which computed matches are stored.",
|
description="Folder(s) in which computed matches are stored.",
|
||||||
|
exposed=True,
|
||||||
),
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name="describerTypes",
|
name="describerTypes",
|
||||||
|
@ -51,6 +53,7 @@ It fuses all feature matches between image pairs into tracks. Each track represe
|
||||||
value=["dspsift"],
|
value=["dspsift"],
|
||||||
exclusive=False,
|
exclusive=False,
|
||||||
joinChar=",",
|
joinChar=",",
|
||||||
|
exposed=True,
|
||||||
),
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
name="minInputTrackLength",
|
name="minInputTrackLength",
|
||||||
|
|
Loading…
Add table
Reference in a new issue