Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nodes] StructureFromMotion: Add new logIntermediateSteps parameter #2182

Merged
merged 1 commit into from
Sep 11, 2023
Merged
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
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