CoolFace
Datasetpublic

SobanHM/Road-Objects-Detection-Dataset

🚦 Road Object Detection Dataset (YOLOv8) A multi-class road scene object detection dataset for training and benchmarking modern object detection models. πŸ“Œ Overview This dataset contains annotated road scene images in YOLOv8 format for multi-class object detection. It is suitable for developing and evaluating deep learning models for: πŸš— Vehicle Detection 🚦 Traffic Monitoring πŸ™οΈ Smart City Applications 🚘 Autonomous Driving Research πŸ“Ή Intelligent… See the full description on the dataset page: https://huggingface.co/datasets/SobanHM/Road-Objects-Detection-Dataset.

sourceHugging Facecc-by-4.0updated 2mo agoView on Hugging Face
0likes282downloads
Dataset Card

🚦 Road Object Detection Dataset (YOLOv8)

<div align="center">

YOLO Classes Task License

A multi-class road scene object detection dataset for training and benchmarking modern object detection models.

</div>


πŸ“Œ Overview

This dataset contains annotated road scene images in YOLOv8 format for multi-class object detection.

It is suitable for developing and evaluating deep learning models for:

  • β€”πŸš— Vehicle Detection
  • β€”πŸš¦ Traffic Monitoring
  • β€”πŸ™οΈ Smart City Applications
  • β€”πŸš˜ Autonomous Driving Research
  • β€”πŸ“Ή Intelligent Transportation Systems (ITS)

πŸ“‚ Dataset Structure

Road_Object_Detection_Dataset/
β”‚
β”œβ”€β”€ data.yaml
β”‚
β”œβ”€β”€ train/
β”‚   β”œβ”€β”€ images/
β”‚   └── labels/
β”‚
β”œβ”€β”€ valid/
β”‚   β”œβ”€β”€ images/
β”‚   └── labels/
β”‚
└── test/
    β”œβ”€β”€ images/
    └── labels/

🏷️ Classes

IDClass
0🚲 Bike
1🚌 Bus
2πŸš— Car
3🚢 Person
4🚦 Traffic Signal
5🚚 Truck

πŸ“ Annotation Format

The dataset follows the YOLOv8 annotation format.

Each label file contains one object per line:

text
class x_center y_center width height

where all coordinates are normalized between 0 and 1.

Example:

text
2 0.523 0.418 0.247 0.182

πŸš€ Training Example

python
from ultralytics import YOLO

model = YOLO("yolov8n.pt")

model.train(
    data="data.yaml",
    epochs=100,
    imgsz=640
)

🎯 Applications

  • β€”Object Detection
  • β€”Vehicle Detection
  • β€”Traffic Analysis
  • β€”Road Scene Understanding
  • β€”Smart Transportation
  • β€”Autonomous Driving
  • β€”AI Surveillance
  • β€”Academic Research

πŸ“‹ Dataset Information

PropertyValue
TaskObject Detection
Annotation FormatYOLOv8
Number of Classes6
Data SplitTrain / Validation / Test
LicenseCC BY 4.0

πŸ“œ Citation

If you use this dataset in your research, please cite it appropriately.

bibtex
@dataset{road_object_detection_yolov8,
  title={Road Object Detection Dataset (YOLOv8)},
  author={Soban Hussain},
  year={2026},
  publisher={Hugging Face},
}

πŸ“„ License

This dataset is distributed under the CC BY 4.0 License.


<div align="center">

⭐ If you find this dataset useful, consider giving it a star on Hugging Face.

Happy Training!

</div>