14 lines
371 B
Python
14 lines
371 B
Python
|
from .builder import DATASETS
|
||
|
from .cityscapes import CityscapesDataset
|
||
|
|
||
|
|
||
|
@DATASETS.register_module()
|
||
|
class NightDrivingDataset(CityscapesDataset):
|
||
|
"""NightDrivingDataset dataset."""
|
||
|
|
||
|
def __init__(self, **kwargs):
|
||
|
super().__init__(
|
||
|
img_suffix='_leftImg8bit.png',
|
||
|
seg_map_suffix='_gtCoarse_labelTrainIds.png',
|
||
|
**kwargs)
|