__init__.py 429 Bytes
Newer Older
luopl's avatar
luopl committed
1
2
3
4
5
6
7
8
9
10
# Copyright (c) OpenMMLab. All rights reserved.
from .det_data_sample import DetDataSample, OptSampleList, SampleList
from .reid_data_sample import ReIDDataSample
from .track_data_sample import (OptTrackSampleList, TrackDataSample,
                                TrackSampleList)

__all__ = [
    'DetDataSample', 'SampleList', 'OptSampleList', 'TrackDataSample',
    'TrackSampleList', 'OptTrackSampleList', 'ReIDDataSample'
]