From cb8eaff22fc308f8e17a124a435fb32ac7b6b9d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Fri, 8 Sep 2023 17:51:32 +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 0dac53002ad..92adf44e6d1 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",