mirror of
https://github.com/alibaba/EasyCV.git
synced 2025-06-03 14:49:00 +08:00
* add caltech, flower, mnist data source * add det lvis data source * add pose crowdPose data source * add pose of OC Human data source * add pose of mpii data source * add Seg of voc data source * add Seg of coco data source * add Det of wider person datasource * add Det of african wildlife datasource * add Det of fruit datasource * add Det of pet datasource * add Det of artaxor and tiny person datasource * add Det of wider face datasource * add Det of crowd human datasource * add Det of object365 datasource * add Seg of coco stuff 10k and 164k datasource Co-authored-by: Cathy0908 <30484308+Cathy0908@users.noreply.github.com>
12 lines
462 B
Python
12 lines
462 B
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
from .coco import SegSourceCoco, SegSourceCoco2017
|
|
from .coco_stuff import SegSourceCocoStuff10k, SegSourceCocoStuff164k
|
|
from .raw import SegSourceRaw
|
|
from .voc import SegSourceVoc2007, SegSourceVoc2010, SegSourceVoc2012
|
|
|
|
__all__ = [
|
|
'SegSourceRaw', 'SegSourceVoc2010', 'SegSourceVoc2007', 'SegSourceVoc2012',
|
|
'SegSourceCoco', 'SegSourceCoco2017', 'SegSourceCocoStuff164k',
|
|
'SegSourceCocoStuff10k'
|
|
]
|