From fd1292ad0051cac14bdb7ca4fa8ffa502bdf86e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Fri, 8 Sep 2023 19:30:15 +0200 Subject: [PATCH] [nodes] StructureFromMotion: Add new `logIntermediateSteps` parameter 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. --- meshroom/nodes/aliceVision/StructureFromMotion.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/meshroom/nodes/aliceVision/StructureFromMotion.py b/meshroom/nodes/aliceVision/StructureFromMotion.py index 0dac53002a..92adf44e6d 100644 --- a/meshroom/nodes/aliceVision/StructureFromMotion.py +++ b/meshroom/nodes/aliceVision/StructureFromMotion.py @@ -1,4 +1,4 @@ -__version__ = "3.1" +__version__ = "3.2" from meshroom.core import desc @@ -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",