From be876de9e475b883b6bf421bcc97bcce7a2825c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Thu, 22 Dec 2022 09:22:30 +0100 Subject: [PATCH] [nodes] KeyframeSelection: add parameter to compute optical flow on borders --- 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 0cd9eae1..1129e233 100644 --- a/meshroom/nodes/aliceVision/KeyframeSelection.py +++ b/meshroom/nodes/aliceVision/KeyframeSelection.py @@ -126,6 +126,14 @@ You can extract frames at regular interval by configuring only the min/maxFrameS enabled=lambda node: node.debug.computeScores.value, uid=[], ), + desc.BoolParam( + name='flowOnBorders', + label='Compute Optical Flow Scores On Image Borders', + description='Compute optical flow scores on the top, bottom, left and right borders of all the input frames.', + value=False, + enabled=lambda node: node.debug.computeScores.value, + uid=[0], + ), desc.BoolParam( name='exportSharpness', label='Export Sharpness Scores',