mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-29 06:27:35 +02:00
Add parameters to sfmBootstraping
This commit is contained in:
parent
b5dda4efd0
commit
3715c767f7
2 changed files with 31 additions and 0 deletions
|
@ -31,6 +31,34 @@ class SfMBootStraping(desc.AVCommandLineNode):
|
|||
description="Information on pairs.",
|
||||
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(
|
||||
name="verboseLevel",
|
||||
label="Verbose Level",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue