mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-24 03:57:28 +02:00
[nodes] KeyframeSelection: add a "refineSelection" parameter
This commit is contained in:
parent
be876de9e4
commit
4a57e8cfcc
1 changed files with 17 additions and 10 deletions
|
@ -95,16 +95,6 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
|
|||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
description='Verbosity level (fatal, error, warning, info, debug, trace).',
|
||||
value='info',
|
||||
values=['fatal', 'error', 'warning', 'info', 'debug', 'trace'],
|
||||
exclusive=True,
|
||||
uid=[],
|
||||
),
|
||||
|
||||
desc.GroupAttribute(
|
||||
name="debug",
|
||||
label="Debug Parameters",
|
||||
|
@ -150,6 +140,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='refineSelection',
|
||||
label='Refine Frame Selection',
|
||||
description='Refine the initial frame selection, which is solely based on optical flow, with sharpness information.',
|
||||
value=True,
|
||||
enabled=lambda node: node.debug.computeScores.value,
|
||||
uid=[],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='noSelection',
|
||||
label='Cancel Keyframe Selection',
|
||||
|
@ -159,6 +157,15 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
|
|||
uid=[],
|
||||
)
|
||||
]),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
description='Verbosity level (fatal, error, warning, info, debug, trace).',
|
||||
value='info',
|
||||
values=['fatal', 'error', 'warning', 'info', 'debug', 'trace'],
|
||||
exclusive=True,
|
||||
uid=[],
|
||||
)
|
||||
]
|
||||
|
||||
outputs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue