[4e96d3]: / mmseg / datasets / dark_zurich.py

Download this file

14 lines (10 with data), 358 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
from .builder import DATASETS
from .cityscapes import CityscapesDataset
@DATASETS.register_module()
class DarkZurichDataset(CityscapesDataset):
"""DarkZurichDataset dataset."""
def __init__(self, **kwargs):
super().__init__(
img_suffix='_rgb_anon.png',
seg_map_suffix='_gt_labelTrainIds.png',
**kwargs)