The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Error code: UnexpectedError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
image image | label class label |
|---|---|
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 | |
6GOPR0475 |
YAML Metadata Warning: empty or missing yaml metadata in repo card
Check out the documentation for more information.
ACDC
ACDC, or the Adverse Conditions Dataset with Correspondences, is a large-scale dataset for dense semantic perception tasks in adverse visual conditions, including semantic segmentation, object detection, and panoptic segmentation. It consists of 4006 images which are evenly distributed between four common adverse conditions: fog, nighttime, rain, and snow. Each adverse-condition image comes with a high-quality fine pixel-level panoptic annotation, a corresponding image of the same scene taken under normal conditions, and a binary mask that distinguishes between intra-image regions of clear and uncertain semantic content. Moreover, ACDC includes high-quality fine pixel-level panoptic annotations for 1503 of the aforementioned corresponding normal-condition images.
Thus, ACDC supports:
- semantic segmentation
- object detection
- panoptic segmentation
- the new uncertainty-aware semantic segmentation
The ground-truth annotations of the training and validation sets are publicly available. The ground-truth annotations of the test set are withheld and they are used for the publicly available ACDC benchmark.
Download
ACDC can be downloaded through the associated website. Users need to register on this website first before accessing the dataset.
Note: due to data protection regulations, the original RGB images of the dataset, which contain personal data, are not made available by default. After having registered, users who are interested in the original images need to explicitly request access to them. Anonymized versions of the images - with minimal modifications - are available by default and can be used alternatively.
Dataset Structure
The directory structure of ACDC is as follows:
{root}/{type}/{condition}/{split}/{sequence}/{sequence}_frame_{frame:0>6}_{type}{ext}`
The meaning of the individual directory levels is:
rootthe root directory where the dataset is stored.typethe type/modality of data, e.g.rgb_anonfor anonymized RGB images, orgtfor ground-truth annotations.conditionthe adverse condition associated with the data, e.g.night.splitthe split, e.g.train. Note that not all types of data exist for all splits.sequencethe image sequence, e.g.GOPR0351.
Possible values of type:
rgbthe original RGBpngimages in 8-bit format.rgb_anonthe anonymized RGBpngimages in 8-bit format.gtthe pixel-level semantic annotations and invalid mask annotations. Annotations are encoded usingpngimages, where pixel values encode labels. There are three different formats for the semantic annotations and two formats for the invalid mask annotations. Details on these formats are given below.
For benchmarking on annotated normal-condition images, a test_ref_image_list.txt file which includes the paths to the set of annotated images in the test_ref split is provided under gt.
Possible values of condition:
fognightrainsnow
Possible values of split:
traintraining set. It contains 400 images from each of the four examined adverse conditions.train_refcorresponding normal-condition images for the training set.valvalidation set. It contains 100 images from each of fog, rain, and snow, and 106 images from night.val_refcorresponding normal-condition images for the validation set.testtest set. It contains 500 images from each of the four examined adverse conditions.test_refcorresponding normal-condition images for the test set.
The meaning of the individual constituents of the file name format is:
extan optional identifier_reffor files in the splitstrain_ref,val_refandtest_ref, followed by an optional suffix_{suffix}(only relevant forgtfiles), in turn followed by the extension of the file , e.g._ref_labelIds.pngfor semantic annotations of corresponding normal-condition images.frame:0>6the frame number within the respective sequence, composed of six digits.
Possible values of suffix (for gt files):
labelIdssemantic labels encoded usingpngimages, where pixel values encode labels in Cityscapes IDs format. Please refer to the script helpers/labels.py in the Cityscapes GitHub repository for details on the 19 semantic classes included in our semantic annotations, which coincide with the classes that are included in Cityscapes evaluation.labelTrainIdssemantic labels encoded usingpngimages, where pixel values encode labels in Cityscapes trainIDs format.labelColorsemantic labels encoded usingpngimages, where pixel values encode labels in Cityscapes color format. Purposed for visualization.invIdsinvalid masks encoded using 8-bitpngimages, where the value of invalid pixels is set to1and the value of valid pixels is set to0. This suffix is only relevant for files that are not in the*_refsplits.invGrayinvalid masks encoded using 8-bitpngimages, where the value of invalid pixels is set to255and the value of valid pixels is set to0. Purposed for visualization. This suffix is only relevant for files that are not in the*_refsplits.
Dataset Structure for detection and panoptic segmentation annotations
The provided detection annotations follow the COCO format.
The directory structure of ACDC detection annotations is as follows:
βββ fog
β βββ instancesonly_fog_test_image_info.json
β βββ instancesonly_fog_train_gt_detection.json
β βββ instancesonly_fog_val_gt_detection.json
βββ night
β βββ instancesonly_night_test_image_info.json
β βββ instancesonly_night_train_gt_detection.json
β βββ instancesonly_night_val_gt_detection.json
βββ rain
β βββ instancesonly_rain_test_image_info.json
β βββ instancesonly_rain_train_gt_detection.json
β βββ instancesonly_rain_val_gt_detection.json
βββ snow
β βββ instancesonly_snow_test_image_info.json
β βββ instancesonly_snow_train_gt_detection.json
β βββ instancesonly_snow_val_gt_detection.json
βββ instancesonly_test_image_info.json
βββ instancesonly_test_ref_image_info.json
βββ instancesonly_train_gt_detection.json
βββ instancesonly_train_gt_ref_detection.json
βββ instancesonly_val_gt_detection.json
βββ instancesonly_val_gt_ref_detection.json
Detection annotation json files for different conditions are placed in the path
{root}/gt_detection/{condition}/instancesonly_{condition}_{split}_{type}.json
Here condition is optional. It could be fog, night, rain, snow or it can be empty.
type could be gt_detection, gt_ref_detection or image_info. gt_detection refers to ground-truth annotations, which is applied to the train and val splits. gt_ref_detection refers to ground-truth annotations for corresponding normal-condition images, which is applied to the train_ref and val_ref splits. image_info only contains the list of images and the predefined categories, which is applied to the test and test_ref splits.
The provided panoptic segmentation annotations also follow the COCO format.
The directory structure of ACDC panoptic segmentation annotations is as follows:
βββ fog
β βββ fog_test_image_info.json
β βββ fog_train_gt_panoptic.json
β βββ fog_val_gt_panoptic.json
β βββ test
β βββ train
β βββ val
β βββ test_ref
β βββ train_ref
β βββ val_ref
βββ night
β βββ night_test_image_info.json
β βββ night_train_gt_panoptic.json
β βββ night_val_gt_panoptic.json
β βββ test
β βββ train
β βββ val
β βββ test_ref
β βββ train_ref
β βββ val_ref
βββ rain
β βββ rain_test_image_info.json
β βββ rain_train_gt_panoptic.json
β βββ rain_val_gt_panoptic.json
β βββ test
β βββ train
β βββ val
β βββ test_ref
β βββ train_ref
β βββ val_ref
βββ snow
β βββ snow_test_image_info.json
β βββ snow_train_gt_panoptic.json
β βββ snow_val_gt_panoptic.json
β βββ test
β βββ train
β βββ val
β βββ test_ref
β βββ train_ref
β βββ val_ref
βββ test_image_info.json
βββ test_ref_image_info.json
βββ train_gt_panoptic.json
βββ train_gt_ref_panoptic.json
βββ val_gt_panoptic.json
βββ val_gt_ref_panoptic.json
For panoptic segmentation, the semantic annotation json files for different conditions are placed in the path
{root}/gt_panoptic/{condition}/{condition}_{split}_{type}.json`
Here condition is optional. It could be fog, night, rain, snow or it can be empty.
type could be gt_panoptic, gt_ref_panoptic or image_info. gt_panoptic refers to ground-truth annotations, which is applied to the train and val splits. gt_ref_panoptic refers to ground-truth annotations for corresponding normal-condition images, which is applied to the train_ref and val_ref splits. image_info only contains the list of images and the predefined categories, which is applied to the test and test_ref splits.
The pixel-level panoptic mask PNG files are placed in the path
{root}/gt_panoptic/{condition}/{split}/{sequence}/{sequence}_frame_{frame:0>6}_{type}.png`
Citation
If you use ACDC in your work, please cite our publications as listed on the ACDC website.
License
ACDC is made available for non-commercial use under the license agreement which is contained in the attached file License.pdf.
Contact
Please feel free to contact us with any questions or comments:
Christos Sakaridis, Haoran Wang, Dengxin Dai acdc.dataset [at] zohomail.eu https://acdc.vision.ee.ethz.ch
- Downloads last month
- 18