Shortcuts

Source code for mmseg.datasets.dark_zurich

# Copyright (c) OpenMMLab. All rights reserved.
from .builder import DATASETS
from .cityscapes import CityscapesDataset


[docs]@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)
Read the Docs v: latest
Versions
latest
stable
Downloads
pdf
html
epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.