jye9 nielsr HF Staff commited on
Commit
aa4a657
·
1 Parent(s): f2c9cde

Add task categories, project links and sample usage (#2)

Browse files

- Add task categories, project links and sample usage (a7be20309b880d934d0788e94f2d358475411cb8)


Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +28 -12
README.md CHANGED
@@ -1,7 +1,8 @@
1
  ---
2
  license: apache-2.0
 
 
3
  tags:
4
- - arxiv:2605.15779
5
  - computer-vision
6
  - object-tracking
7
  - multi-camera
@@ -14,8 +15,11 @@ This dataset contains synchronized multi-UAV video footage and comprehensive tra
14
 
15
  It is designed for evaluating real-time multi-camera multi-vehicle tracking (MCMT) systems, focusing on solving trajectory fragmentation and maintaining global identity persistence across isolated UAV fields of view.
16
 
 
 
 
17
  <p align="center">
18
- <img src="assets/Pipeline.png" alt="Multi-Camera Multi-Vehicle Tracking Pipeline" width="80%"/>
19
  </p>
20
 
21
  ## Dataset Contents
@@ -27,9 +31,9 @@ Three synchronized 1-minute video clips captured from different UAV perspectives
27
  - `uav3_1min.mp4`
28
 
29
  <p align="center">
30
- <img src="assets/uav1.jpg" alt="UAV1" width="32%"/>
31
- <img src="assets/uav2.jpg" alt="UAV2" width="32%"/>
32
- <img src="assets/uav3.jpg" alt="UAV3" width="32%"/>
33
  <br/>
34
  <em>Example: Consistent global tracking (e.g., the red car with ID 70) across overlapping UAV fields of view.</em>
35
  </p>
@@ -40,16 +44,29 @@ The dataset includes structured CSV files with rich metadata generated by our tr
40
  **Base Schema:**
41
  ```text
42
  frame_index, x_min, y_min, x_max, y_max, class_id, confidence, tracker_id, global_id, camera_id, speed, status
43
-
44
  ```
45
 
46
  *Note: Speed is estimated in km/h via pixel-to-meter scaling. Status tracks active/new_entry/exiting states.*
47
 
48
- ## Tracking Pipeline Code
49
-
50
- The full production-ready pipeline (utilizing YOLO11, ByteTrack, and our Topology-based Spatiotemporal Handover mechanism) used to process these videos is open-source.
51
-
52
- 🔗 **[View Source Code on GitHub](https://www.google.com/search?q=https://github.com/JYe9/multi-camera-multi-vehicle-tracking-system)**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
  ## Citation
55
 
@@ -64,5 +81,4 @@ If you find this dataset or our framework useful in your research, please cite o
64
  archivePrefix={arXiv},
65
  primaryClass={cs.CV}
66
  }
67
-
68
  ```
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - object-detection
5
  tags:
 
6
  - computer-vision
7
  - object-tracking
8
  - multi-camera
 
15
 
16
  It is designed for evaluating real-time multi-camera multi-vehicle tracking (MCMT) systems, focusing on solving trajectory fragmentation and maintaining global identity persistence across isolated UAV fields of view.
17
 
18
+ - **Project Page:** [https://www.jye.me/ICUAS2026/](https://www.jye.me/ICUAS2026/)
19
+ - **GitHub Repository:** [https://github.com/JYe9/multi-camera-multi-vehicle-tracking-system](https://github.com/JYe9/multi-camera-multi-vehicle-tracking-system)
20
+
21
  <p align="center">
22
+ <img src="https://huggingface.co/datasets/jye9/Multi-Camera-Multi-Vehicle-Tracking-System/resolve/main/assets/Pipeline.png" alt="Multi-Camera Multi-Vehicle Tracking Pipeline" width="80%"/>
23
  </p>
24
 
25
  ## Dataset Contents
 
31
  - `uav3_1min.mp4`
32
 
33
  <p align="center">
34
+ <img src="https://huggingface.co/datasets/jye9/Multi-Camera-Multi-Vehicle-Tracking-System/resolve/main/assets/uav1.jpg" alt="UAV1" width="32%"/>
35
+ <img src="https://huggingface.co/datasets/jye9/Multi-Camera-Multi-Vehicle-Tracking-System/resolve/main/assets/uav2.jpg" alt="UAV2" width="32%"/>
36
+ <img src="https://huggingface.co/datasets/jye9/Multi-Camera-Multi-Vehicle-Tracking-System/resolve/main/assets/uav3.jpg" alt="UAV3" width="32%"/>
37
  <br/>
38
  <em>Example: Consistent global tracking (e.g., the red car with ID 70) across overlapping UAV fields of view.</em>
39
  </p>
 
44
  **Base Schema:**
45
  ```text
46
  frame_index, x_min, y_min, x_max, y_max, class_id, confidence, tracker_id, global_id, camera_id, speed, status
 
47
  ```
48
 
49
  *Note: Speed is estimated in km/h via pixel-to-meter scaling. Status tracks active/new_entry/exiting states.*
50
 
51
+ ## Sample Usage
52
+
53
+ After cloning the [GitHub repository](https://github.com/JYe9/multi-camera-multi-vehicle-tracking-system) and installing the requirements, you can run the pipeline with the following command:
54
+
55
+ ```bash
56
+ python main.py \
57
+ --source_video_path_uav1 videos/uav1_1min.mp4 \
58
+ --target_video_path_uav1 output_videos/1mins_UAV1_output.mp4 \
59
+ --target_csv_path_uav1 csv/1mins_UAV1.csv \
60
+ --source_video_path_uav2 videos/uav2_1min.mp4 \
61
+ --target_video_path_uav2 output_videos/1mins_UAV2_output.mp4 \
62
+ --target_csv_path_uav2 csv/1mins_UAV2.csv \
63
+ --source_video_path_uav3 videos/uav3_1min.mp4 \
64
+ --target_video_path_uav3 output_videos/1mins_UAV3_output.mp4 \
65
+ --target_csv_path_uav3 csv/1mins_UAV3.csv \
66
+ --model_path models_zoo/3UAVs.pt \
67
+ --confidence_threshold 0.5 \
68
+ --iou_threshold 0.5
69
+ ```
70
 
71
  ## Citation
72
 
 
81
  archivePrefix={arXiv},
82
  primaryClass={cs.CV}
83
  }
 
84
  ```