Skip to content
AI.info

Research

PaveSync: A Unified and Comprehensive Dataset for Pavement Distress Analysis and Classification

Overview Research area: Computer vision for infrastructure — specifically automated pavement distress detection using deep learning object detectors. Technical level: Intermediate. Understandable to a

arXiv
2512.20011
Published
2025-12-23
Authors
Blessing Agyei Kyem, Joshua Kofi Asamoah, Anthony Dontoh, Andrews Danyo, Eugene Denteh, Armstrong Aboah

AI summary

Overview

Research area: Computer vision for infrastructure — specifically automated pavement distress detection using deep learning object detectors.

Technical level: Intermediate. Understandable to anyone with basic machine learning familiarity, but the benchmarking tables and detector architectures assume some object-detection background. The dataset itself is useful to beginners as a practical resource.

Scope: The paper introduces PaveSync, a consolidated benchmark dataset of 52,747 pavement images with 135,277 bounding boxes across 13 distress classes, drawn from eight countries, and benchmarks seven state-of-the-art detectors on it.

What This Paper Is About

Pavement distress detection research is fragmented: existing datasets use different annotation formats, different names for the same defect, different class ID schemes, and cover narrow geographic or sensor conditions. This makes it nearly impossible to fairly compare detection models or train one that generalizes across real-world roads.

The authors solve this by merging multiple public pavement datasets into a single harmonized benchmark with unified class definitions and three parallel annotation formats (XML, JSON, YOLO TXT), then evaluating seven modern detectors on it to establish a baseline.

Key Contributions

  1. A unified, multi-perspective dataset. PaveSync combines aerial/drone, top-down, pavement-level, and ground-level vehicle imagery from Iran, China, the United States, Japan, India, the Czech Republic, Norway, and Ghana into 52,747 images, capturing varied climates and weather (daylight, snow, rain).

  2. A standardized annotation framework. The authors reconciled conflicting class names (e.g., "Alligator" vs. "Alligator Cracking"), removed duplicates and ambiguous labels, pruned under-represented classes, and assigned consistent class IDs — while preserving multiple output formats so researchers retain flexibility.

  3. The first globally representative benchmark for pavement defect detection. Standardization enables fair cross-model comparison and zero-shot transfer evaluation to new environments, which prior fragmented datasets could not support.

  4. Baseline benchmarking of seven detectors. YOLOv8–YOLOv12, Faster R-CNN, and DETR were trained on a stratified 90/10 split and evaluated per distress class across precision, recall, F1, mAP@50, and mAP@50–95.

The dataset, preprocessed annotations, and documentation are publicly released via Google Drive.

Main Findings

  • Class difficulty varies enormously. Manhole (mAP@50 ~0.83–0.86) and rutting (~0.91–0.99) were detected most reliably across all models, while bleeding (mAP@50 ~0.30–0.37), bumps and sags (~0.38–0.45), and alligator cracking (~0.73–0.76) were hardest — largely reflecting how visually distinct each defect is.

  • No single model dominates every class. Each architecture showed a distinct performance fingerprint: YOLOv8 excelled on large, obvious deformations like rutting and shoving; YOLOv9 showed stronger recall on manholes and rutting; YOLOv11 achieved the highest precision on intricate categories like alligator cracking; YOLOv12 was solid overall but struggled with recall on irregular classes, suggesting difficulty learning subtle patterns.

  • YOLOv10 offered the most consistent balance. Its NMS-free design and dual assignment strategy produced steadier precision–recall trade-offs across most classes, which matters for real-time road monitoring.

  • Faster R-CNN and DETR remained competitive. The two-stage region-based approach of Faster R-CNN delivered balanced results across defect types, while DETR's attention mechanism gave strong recall on classes with distinct shape signatures but weaker precision on subtler defects like bumps and sags.

  • The dataset is heavily imbalanced, and models reflect that. Potholes dominate with 28,638 instances, while block cracking has only 446 and Ghana contributes just 578 images — a structural limitation the authors address with weighted sampling during training.

  • Standardization works, but absolute performance is modest. mAP@50–95 scores generally sit between 0.19 and 0.77, indicating that pavement defect detection in genuinely diverse, uncontrolled conditions remains a hard problem.

(Note: the abstract states "seven countries," but Table I lists eight; the introduction also cites 52,854 images versus 52,747 in the tables.)

Methodology in Plain English

The authors started by collecting publicly available pavement image datasets from a wide range of sources — vehicle-mounted cameras, drones, aerial imagery, and pavement-level photography. These sources disagreed with each other in almost every way: some used Pascal VOC XML annotations, some COCO JSON, some YOLO TXT; some called a defect "Alligator" and others "Alligator Cracking"; and the same defect type had different numeric class IDs in each dataset.

They resolved this by building a mapping layer: one canonical name and one canonical ID per distress type, applied consistently across all sources, while keeping the annotations available in all three original formats. Classes with too few examples were dropped as noisy and destabilizing.

Because manually checking 135,277 boxes was infeasible, they used stratified sampling to validate annotations — selecting a representative subset spanning distress types, weather, and geography, overlaying standardized annotations on images side by side with originals, correcting mismatches, and repeating until clean.

For benchmarking, all images were resized to 640×640 (preserving aspect ratio), then augmented with random cropping, rotation, flipping, brightness/contrast shifts, and Gaussian noise. Weighted sampling counteracted class imbalance. Models trained for 1000 epochs at batch size 16 on an NVIDIA A100 with PyTorch 2.0, using Adam and cosine annealing. A stratified 90/10 train/validation split preserved class distributions and geographic mix across both sets.

Why This Matters

Pavement distress detection models trained on one dataset often fail in the field because real roads look nothing like the training set — different cameras, weather, geography, and lighting. PaveSync attacks the root cause: data fragmentation. It gives the field a shared yardstick, so a claim that "model A beats model B" finally means something.

Real-world applications:

  • Municipal and state transportation agencies can plug trained detectors into inspection pipelines, automatically flag potholes or severe cracking and prioritize repairs before they escalate into costly structural damage.
  • Infrastructure asset management firms can build predictive maintenance schedules from standardized defect labels, optimizing crew deployment and budget allocation across road networks.
  • Autonomous vehicle and mapping companies can use robust distress detection to update road quality maps and adjust routing or suspension behavior in real time.
  • Domain adaptation research benefits directly: because the dataset spans multiple countries and weather conditions, researchers can test whether a model trained in Ghana transfers to Norway, or whether a drone-based model works on vehicle-mounted imagery.

Industry relevance: Road maintenance is a multi-billion-dollar annual expense worldwide, and most inspection is still manual and slow. A public, standardized, globally diverse benchmark lowers the barrier for companies to build and credibly validate commercial pavement monitoring products.

Future Directions

  • Addressing class and geography imbalance. Block cracking (446 instances) and Ghana (578 images) are severely under-represented. Targeted data collection or generative augmentation could close these gaps and improve performance on rare but structurally critical defects.

  • Building pavement foundation models. The paper explicitly gestures toward foundation models that combine deep learning with diverse data inputs. PaveSync's scale and format consistency make it a plausible pretraining corpus for that direction.

  • Systematic domain adaptation and zero-shot transfer studies. The dataset supports this in principle, but the paper only hints at it. Quantifying how well models transfer between countries, sensors, and weather conditions is an obvious next experiment.

  • Temporal and severity-aware extensions. Current annotations capture what and where a defect is, but not how severe it is or how it evolves. Adding severity grading and repeat-visit imagery would enable predictive maintenance rather than just detection.

  • Pushing beyond box detection. Segmentation masks for irregular cracks or depth-based 3D rutting estimation would give richer signals than bounding boxes alone.

Target Audience

This paper is most valuable to computer vision researchers working on object detection and dataset construction, and to transportation engineering researchers who need a credible, large-scale benchmark for pavement condition assessment. Practitioners at transportation agencies and infrastructure consultancies evaluating machine learning tools will find the baseline performance numbers directly useful for setting expectations. Graduate students entering automated road condition monitoring get a ready-made starting point — the dataset is public, the annotations are preprocessed, and the baseline results provide a reference point to beat.

Authors’ abstract

Automated pavement defect detection often struggles to generalize across diverse real-world conditions due to the lack of standardized datasets. Existing datasets differ in annotation styles, distress type definitions, and formats, limiting their integration for unified training. To address this gap, we introduce a comprehensive benchmark dataset that consolidates multiple publicly available sources into a standardized collection of 52747 images from seven countries, with 135277 bounding box annotations covering 13 distinct distress types. The dataset captures broad real-world variation in image quality, resolution, viewing angles, and weather conditions, offering a unique resource for consistent training and evaluation. Its effectiveness was demonstrated through benchmarking with state-of-the-art object detection models including YOLOv8-YOLOv12, Faster R-CNN, and DETR, which achieved competitive performance across diverse scenarios. By standardizing class definitions and annotation formats, this dataset provides the first globally representative benchmark for pavement defect detection and enables fair comparison of models, including zero-shot transfer to new environments.

Read the original paper