Dataset Viewer
The dataset viewer should be available soon. Please retry later.
SentinelEdge Traffic Dataset
A large-scale urban traffic dataset combining Bengaluru CCTV footage with the UA-DETRAC benchmark, assembled for the SentinelEdge traffic management and vehicle detection system. Contains ~196,000 annotated images across four sub-datasets covering Indian urban roads and international highway scenarios.
Sub-datasets
1. BMD-45-Train
- 35,792 images from 45 Bengaluru CCTV locations
- 373,132 bounding box annotations in COCO JSON format
- Covers mixed urban traffic including autos, two-wheelers, heavy vehicles
2. UVH-26-Train
- 17,387 images from 26 urban Bengaluru camera locations
- COCO JSON annotations (single-track and multi-view variants)
- High vehicle density, diverse lighting conditions
3. IITM-HeTra v2
- 2,836 images from IIT Madras Heterogeneous Traffic dataset
- Pascal VOC XML annotations
- Train/val/test splits provided via
trainval.txtandtest.txt
4. UA-DETRAC
- 140,131 images from 100 traffic sequences recorded in Beijing and Tianjin
- XML annotations with per-vehicle attributes (type, occlusion, truncation)
- Includes MOT evaluation toolkit
Dataset Structure
βββ BMD-45-Train/
β βββ images_000/ # 35,792 images (.png)
β βββ _annotations.coco.json # COCO format annotations
β
βββ UVH-26-Train/
β βββ data/
β β βββ 000/ # image sequences
β β βββ 001/
β β βββ 002/
β βββ UVH-26-ST-Train.json # single-track annotations
β βββ UVH-26-MV-Train.json # multi-view annotations
β
βββ IITM-HeTra_v2/
β βββ Dataset-1/
β β βββ images/
β β βββ images_test/
β β βββ xmls/ # Pascal VOC train annotations
β β βββ xmls_test/ # Pascal VOC test annotations
β β βββ trainval.txt
β β βββ test.txt
β βββ Dataset-2/
β βββ images/
β βββ images_test/
β βββ xmls/
β βββ xmls_test/
β βββ trainval.txt
β βββ test.txt
β
βββ DETRAC/
βββ DETRAC-Images/ # 140,131 images across 100 sequences
βββ DETRAC-Train-Annotations-XML/
βββ DETRAC-Test-Annotations-XML/
βββ DETRAC-MOT-toolkit/ # MATLAB evaluation toolkit
Vehicle Classes
BMD-45, UVH-26, IITM-HeTra (Indian traffic):
| Class | Description |
|---|---|
| Two-wheeler | Motorcycles, scooters |
| Three-wheeler | Auto-rickshaws |
| Hatchback | Small passenger cars |
| Sedan | Mid-size passenger cars |
| SUV | Sport utility vehicles |
| MUV | Multi-utility vehicles |
| Van | Vans |
| LCV | Light commercial vehicles |
| Mini-bus | Small buses |
| Bus | Full-size buses |
| Tempo-traveller | Tempo travellers |
| Truck | Heavy trucks |
| Bicycle | Bicycles |
| Others | Miscellaneous (UVH-26 only) |
UA-DETRAC (Chinese highway traffic): Car, Bus, Van, Others
Statistics
| Sub-dataset | Images | Annotations | Format | Region |
|---|---|---|---|---|
| BMD-45-Train | 35,792 | 373,132 | COCO JSON | Bengaluru, India |
| UVH-26-Train | 17,387 | β | COCO JSON | Bengaluru, India |
| IITM-HeTra v2 | 2,836 | β | Pascal VOC XML | Chennai, India |
| UA-DETRAC | 140,131 | β | XML + MOT | Beijing/Tianjin, China |
| Total | ~196,000 | 370,000+ |
Download
Full dataset:
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="kalyan1729/sentineledgedataset",
repo_type="dataset",
local_dir="./sentineledgedataset"
)
Single sub-dataset:
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="kalyan1729/sentineledgedataset",
repo_type="dataset",
local_dir="./detrac",
allow_patterns="DETRAC/**"
)
Citation
If you use this dataset, please cite the original sources:
UA-DETRAC: Wen et al., "UA-DETRAC: A New Benchmark and Protocol for Multi-Object Detection and Tracking", 2020.
IITM-HeTra: IIT Madras Heterogeneous Traffic Dataset v2.
License
Creative Commons Attribution 4.0 International (CC BY 4.0)
Dataset compiled for the SentinelEdge traffic intelligence project.
- Downloads last month
- 17