Skip to content

Commit 6e99f9d

Browse files
authored
Merge pull request #2619 from alicevision/dev/sfmBootstraping
Sfm Bootstraping parameterization
2 parents e7a5387 + cfa10d9 commit 6e99f9d

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

meshroom/nodes/aliceVision/SfmBootstraping.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,34 @@ class SfMBootStraping(desc.AVCommandLineNode):
3131
description="Information on pairs.",
3232
value="",
3333
),
34+
desc.FloatParam(
35+
name="minAngleInitialPair",
36+
label="Min Angle Initial Pair",
37+
description="Minimum angle for the initial pair.",
38+
value=5.0,
39+
range=(0.1, 10.0, 0.1),
40+
advanced=True,
41+
),
42+
desc.FloatParam(
43+
name="maxAngleInitialPair",
44+
label="Max Angle Initial Pair",
45+
description="Maximum angle for the initial pair.",
46+
value=40.0,
47+
range=(0.1, 60.0, 0.1),
48+
advanced=True,
49+
),
50+
desc.File(
51+
name="initialPairA",
52+
label="Initial Pair A",
53+
description="View ID of the first image.",
54+
value="",
55+
),
56+
desc.File(
57+
name="initialPairB",
58+
label="Initial Pair B",
59+
description="View ID of the second image.",
60+
value="",
61+
),
3462
desc.ChoiceParam(
3563
name="verboseLevel",
3664
label="Verbose Level",

meshroom/nodes/aliceVision/SfmExpanding.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ class SfMExpanding(desc.AVCommandLineNode):
88
commandLine = 'aliceVision_sfmExpanding {allParams}'
99
size = desc.DynamicNodeSize('input')
1010

11+
cpu = desc.Level.INTENSIVE
12+
ram = desc.Level.INTENSIVE
13+
1114
category = 'Sparse Reconstruction'
1215
documentation = '''
1316
'''

meshroom/nodes/aliceVision/TracksBuilding.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class TracksBuilding(desc.AVCommandLineNode):
1919
label="SfMData",
2020
description="Input SfMData file.",
2121
value="",
22+
exposed=True,
2223
),
2324
desc.ListAttribute(
2425
elementDesc=desc.File(
@@ -42,6 +43,7 @@ class TracksBuilding(desc.AVCommandLineNode):
4243
name="matchesFolders",
4344
label="Matches Folders",
4445
description="Folder(s) in which computed matches are stored.",
46+
exposed=True,
4547
),
4648
desc.ChoiceParam(
4749
name="describerTypes",
@@ -51,6 +53,7 @@ class TracksBuilding(desc.AVCommandLineNode):
5153
value=["dspsift"],
5254
exclusive=False,
5355
joinChar=",",
56+
exposed=True,
5457
),
5558
desc.IntParam(
5659
name="minInputTrackLength",

0 commit comments

Comments
 (0)