[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.
This commit is contained in:
Candice Bentéjac 2023-01-24 18:07:07 +01:00
parent 0e621d2c79
commit a30cc5a0c8

View file

@ -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
)
]
),