mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-18 19:46:26 +02:00
[nodes] KeyframeSelection: extract all frames by default
This commit is contained in:
parent
8cf9dae33f
commit
2f18e89a9d
1 changed files with 4 additions and 4 deletions
|
@ -109,14 +109,14 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
|
||||||
name='useSparseDistanceSelection',
|
name='useSparseDistanceSelection',
|
||||||
label='Use Sparse Distance Selection',
|
label='Use Sparse Distance Selection',
|
||||||
description='Use sparseDistance selection in order to avoid similar keyframes.',
|
description='Use sparseDistance selection in order to avoid similar keyframes.',
|
||||||
value=True,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='useSharpnessSelection',
|
name='useSharpnessSelection',
|
||||||
label='Use Sharpness Selection',
|
label='Use Sharpness Selection',
|
||||||
description='Use frame sharpness score for keyframe selection.',
|
description='Use frame sharpness score for keyframe selection.',
|
||||||
value=True,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.FloatParam(
|
desc.FloatParam(
|
||||||
|
@ -148,7 +148,7 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
|
||||||
name='minFrameStep',
|
name='minFrameStep',
|
||||||
label='Min Frame Step',
|
label='Min Frame Step',
|
||||||
description='''minimum number of frames between two keyframes''',
|
description='''minimum number of frames between two keyframes''',
|
||||||
value=12,
|
value=1,
|
||||||
range=(1, 100, 1),
|
range=(1, 100, 1),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
@ -156,7 +156,7 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
|
||||||
name='maxFrameStep',
|
name='maxFrameStep',
|
||||||
label='Max Frame Step',
|
label='Max Frame Step',
|
||||||
description='''maximum number of frames after which a keyframe can be taken''',
|
description='''maximum number of frames after which a keyframe can be taken''',
|
||||||
value=36,
|
value=2,
|
||||||
range=(2, 1000, 1),
|
range=(2, 1000, 1),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue