RoadTrack: Real-Time Distant Parking Detection via Visual Geometric Projection and Velocity Estimation
This project provides the first publicly available distant highway abnormal parking event dataset and baseline implementation. The dataset contains 1,000 video sequences, including 200 abnormal parking event videos and 800 normal traffic videos, providing a reliable training foundation and performance evaluation benchmark for highway abnormal event detection research.
- Dataset Scale: 1,000 video sequences
- Data Distribution: 200 abnormal event videos + 800 normal traffic videos
- Annotation Quality: Provides detailed object detection and tracking annotations
- Research Value: Provides standardized evaluation benchmarks for subsequent research
The following GIF animations demonstrate the detection process of vehicles transitioning from motion to stationary states at long distances. Green bounding boxes indicate moving vehicles, while red bounding boxes highlight stationary (parked) vehicles that are detected as abnormal parking events.
- 🚗 Green Boxes: Moving vehicles being tracked
- 🚨 Red Boxes: Stationary vehicles detected as abnormal parking events
- 📏 Long-distance Detection: Effective detection capability beyond 100 meters
- 🎯 Real-time Tracking: Continuous monitoring of vehicle status changes
The following table presents a comparison of RoadTrack dataset with other existing datasets:
Dataset | Number of Videos | Number of Events | Long Distance |
---|---|---|---|
HighD | 60 | N/A | × |
ISLab-PVD | 16 | 22 | × |
DAD | 668 | 620 | × |
RoadTrack | 1000 | 300 | √ |
Our Advantages
- 📈 Largest Scale: 1000 video sequences, providing comprehensive coverage
- 🎯 Event Focus: 300 abnormal parking events with detailed annotations
- 🔭 Long-distance Capability: Unique focus on long-distance detection (>100m)
datasets/
├── P/ # Main dataset directory
│ ├── 04-12_09_K221_1953/ # Video sequence (date_time_road_frame format)
│ │ └── data/
│ │ ├── det/ # Object detection results
│ │ └── gt/ # Ground truth annotations
│ ├── 04-12_11_K249_680/
│ ├── ... # More video sequences
│ └── 06-10_20_K287_172/
- Detection File Format (
det/
):frame_id,track_id,x1,y1,w,h,conf,class_id
- Ground Truth Format (
gt/
):frame_id,track_id,x1,y1,w,h,conf,class_id
- Coordinate System: Image coordinate system with top-left as origin,
(x1,y1)
is top-left corner of bounding box,w,h
are width and height
- Python 3.7+
- OpenCV
- NumPy
- SciPy
pip install -r requirements.txt
numpy
filterpy
lap
scipy
argparse
opencv-python
python run_baseline.py
- Detection Precision: Abnormal event detection precision
- Detection Recall: Abnormal event detection recall
- F1: Abnormal event detection F1 Score
- Detection Latency: Abnormal event detection latency
Baseline method performance on test set:
- Long-distance parking detection capability: >100m
- Real-time processing capability: Supports real-time video stream analysis
- Intelligent Transportation Systems: Real-time monitoring of highway abnormal events
- Traffic Safety Management: Automatic detection and warning of parking events
- Academic Research: Multi-object tracking and abnormal detection algorithm research
- Engineering Applications: Traffic monitoring system development and deployment
If you use this dataset or method in your research, please cite:
For questions or suggestions, please contact us through:
- Email: [corfyi@csust.edu.cn]
Thanks to all researchers and developers who contributed to dataset annotation and algorithm development.
Keywords: Highway Monitoring, Abnormal Parking Detection, Multi-Object Tracking, RoadTrack, Computer Vision, Intelligent Transportation Systems