cityscapes.py 234 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
from .coco import CocoDataset
from .registry import DATASETS


@DATASETS.register_module
class CityscapesDataset(CocoDataset):

    CLASSES = ('person', 'rider', 'car', 'truck', 'bus',
               'train', 'motorcycle', 'bicycle')