mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-28 05:57:38 +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,
|
value=False,
|
||||||
uid=[0],
|
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(
|
desc.GroupAttribute(
|
||||||
name="debug",
|
name="debug",
|
||||||
label="Debug Parameters",
|
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,
|
enabled=lambda node: node.debug.computeScores.value,
|
||||||
uid=[],
|
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(
|
desc.BoolParam(
|
||||||
name='noSelection',
|
name='noSelection',
|
||||||
label='Cancel Keyframe Selection',
|
label='Cancel Keyframe Selection',
|
||||||
|
@ -159,6 +157,15 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
|
||||||
uid=[],
|
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 = [
|
outputs = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue