CoolFace
Datasetpublic

makeabilitylab/disabilityparking

AccessParkCV AccessParkCV is a deep learning pipeline that detects and characterizes the width of disability parking spaces from orthorectified aerial imagery. We publish a dataset of 7,069 labeled parking spaces (and 4,693 labeled access aisles), which we used to train the models making AccessParkCV possible. (This repo contains the data in a HuggingFace format. For raw COCO format, see link). Dataset Description This is an object detection dataset with 8… See the full description on the dataset page: https://huggingface.co/datasets/makeabilitylab/disabilityparking.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes133downloads
Dataset Card

AccessParkCV

<strong>AccessParkCV</strong> is a deep learning pipeline that detects and characterizes the width of disability parking spaces from orthorectified aerial imagery. We publish a dataset of 7,069 labeled parking spaces (and 4,693 labeled access aisles), which we used to train the models making AccessParkCV possible.

(This repo contains the data in a HuggingFace format. For raw COCO format, see link).

Dataset Description

This is an object detection dataset with 8 classes:

  • objects
  • access_aisle
  • curbside
  • dpnoaisle
  • dponeaisle
  • dptwoaisle
  • one_aisle
  • two_aisle

Dataset Structure

Data Fields

  • image: PIL Image object
  • width: Image width in pixels
  • height: Image height in pixels
  • objects: Dictionary containing:
  • bbox: List of bounding boxes in [xmin, ymin, xmax, ymax] format
  • category: List of category IDs
  • area: List of bounding box areas
  • iscrowd: List of crowd flags (boolean)
  • id: List of annotation IDs
  • segmentation: List of polygon segmentations (each as list of [x1,y1,x2,y2,...] coordinates)

Category IDs to Category

Category IDClass
0objects
1access_aisle
2curbside
3dp\no\aisle
4dp\one\aisle
5dp\two\aisle
6one\_aisle
7two\_aisle

Data Sources

RegionLat/Long Bounding CoordinatesSource Resolution# images in dataset
Seattle(47.9572, -122.4489), (47.4091, -122.1551)3 inch/pixel2,790
Washington D.C.(38.9979, -77.1179), (38.7962, -76.9008)3 inch/pixel1,801
Spring Hill(35.7943, -87.0034), (35.6489, -86.8447)Unknown534
Total5,125

Class Composition

ClassQuantity in dataset
access\_aisle4,693
curbside36
dp\no\aisle300
dp\one\aisle2,790
dp\two\aisle402
one\_aisle3,424
two\_aisle117
Total11,762

Data Splits

SplitExamples
train3688
test717
valid720

Class splits

Usage

python
from datasets import load_dataset

train_dataset = load_dataset("makeabilitylab/disabilityparking", split="train", streaming=True)

example = next(iter(train_dataset))

# Example of accessing an item
image = example["image"]
bboxes = example["objects"]["bbox"]
categories = example["objects"]["category"]
segmentations = example["objects"]["segmentation"]  # Polygon coordinates

Citation

bibtex
@inproceedings{hwang_wherecanIpark,
  title={Where Can I Park? Understanding Human Perspectives and Scalably Detecting Disability Parking from Aerial Imagery},
  author={Hwang, Jared and Li, Chu and Kang, Hanbyul and Hosseini, Maryam and Froehlich, Jon E.},
  booktitle={The 27th International ACM SIGACCESS Conference on Computers and Accessibility},
  series={ASSETS '25},
  pages={20 pages},
  year={2025},
  month={October},
  address={Denver, CO, USA},
  publisher={ACM},
  location={New York, NY, USA},
  doi={10.1145/3663547.3746377},
  url={https://doi.org/10.1145/3663547.3746377}
}