[nodes] KeyframeSelection: add parameter to compute optical flow on borders

This commit is contained in:
Candice Bentéjac 2022-12-22 09:22:30 +01:00
parent 77bc977b68
commit be876de9e4

View file

@ -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',