14 lines
358 B
Python
14 lines
358 B
Python
|
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)
|