mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-28 16:36:32 +02:00
[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:
parent
0e621d2c79
commit
a30cc5a0c8
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
)
|
||||
]
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue