Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions meshroom/nodes/aliceVision/SfmBootstraping.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 3 additions & 0 deletions meshroom/nodes/aliceVision/SfmExpanding.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ class SfMExpanding(desc.AVCommandLineNode):
commandLine = 'aliceVision_sfmExpanding {allParams}'
size = desc.DynamicNodeSize('input')

cpu = desc.Level.INTENSIVE
ram = desc.Level.INTENSIVE

category = 'Sparse Reconstruction'
documentation = '''
'''
Expand Down
3 changes: 3 additions & 0 deletions meshroom/nodes/aliceVision/TracksBuilding.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class TracksBuilding(desc.AVCommandLineNode):
label="SfMData",
description="Input SfMData file.",
value="",
exposed=True,
),
desc.ListAttribute(
elementDesc=desc.File(
Expand All @@ -42,6 +43,7 @@ class TracksBuilding(desc.AVCommandLineNode):
name="matchesFolders",
label="Matches Folders",
description="Folder(s) in which computed matches are stored.",
exposed=True,
),
desc.ChoiceParam(
name="describerTypes",
Expand All @@ -51,6 +53,7 @@ class TracksBuilding(desc.AVCommandLineNode):
value=["dspsift"],
exclusive=False,
joinChar=",",
exposed=True,
),
desc.IntParam(
name="minInputTrackLength",
Expand Down
Loading