Skip to content

Commit

Permalink
[nodes] StructureFromMotion: Add new logIntermediateSteps parameter
Browse files Browse the repository at this point in the history
If enabled, the current state of the scene will be dumped as an SfMData
file every 3 resections. Before this option was added, the intermediate
steps were always dumped.
  • Loading branch information
cbentejac committed Sep 8, 2023
1 parent 6a0cd25 commit cb8eaff
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion meshroom/nodes/aliceVision/StructureFromMotion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.1"
__version__ = "3.2"

from meshroom.core import desc

Expand Down Expand Up @@ -372,6 +372,14 @@ class StructureFromMotion(desc.AVCommandLineNode):
uid=[],
advanced=True,
),
desc.BoolParam(
name="logIntermediateSteps",
label="Log Intermediate Steps",
description="Dump the current state of the scene as an SfMData file every 3 resections.",
value=False,
uid=[],
advanced=True
),
desc.ChoiceParam(
name="verboseLevel",
label="Verbose Level",
Expand Down

0 comments on commit cb8eaff

Please sign in to comment.