From a30cc5a0c8955ef8e506da11c9b3003fde0a812e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Tue, 24 Jan 2023 18:07:07 +0100 Subject: [PATCH] [nodes] KeyframeSelection: Add debug option to skip the keyframe selection If enabled, the scores are computed and, if requested, exported to a CSV file, but the keyframe selection itself is not performed. --- meshroom/nodes/aliceVision/KeyframeSelection.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/meshroom/nodes/aliceVision/KeyframeSelection.py b/meshroom/nodes/aliceVision/KeyframeSelection.py index 6df11e77..f049ea5a 100644 --- a/meshroom/nodes/aliceVision/KeyframeSelection.py +++ b/meshroom/nodes/aliceVision/KeyframeSelection.py @@ -232,6 +232,14 @@ You can extract frames at regular interval by configuring only the min/maxFrameS enabled=lambda node: node.debugOptions.debugScores.exportScores.value ) ] + ), + desc.BoolParam( + name="skipSelection", + label="Skip Frame Selection", + description="Compute the sharpness and optical flow scores, but do not proceed to the frame selection.", + value=False, + uid=[0], + enabled=lambda node: node.debugOptions.enabled ) ] ),