mirror of https://github.com/RE-OWOD/RE-OWOD
18 lines
379 B
Python
18 lines
379 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
|
|
|
|
from .frame_selector import (
|
|
FrameSelectionStrategy,
|
|
RandomKFramesSelector,
|
|
FirstKFramesSelector,
|
|
LastKFramesSelector,
|
|
FrameTsList,
|
|
FrameSelector,
|
|
)
|
|
|
|
from .video_keyframe_dataset import (
|
|
VideoKeyframeDataset,
|
|
video_list_from_file,
|
|
list_keyframes,
|
|
read_keyframes,
|
|
)
|