handsomeYun commited on
Commit
d72e6d6
·
verified ·
1 Parent(s): 061a00d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +145 -54
README.md CHANGED
@@ -1,7 +1,7 @@
1
  ---
2
  task_categories:
3
  - object-detection
4
- license: unknown
5
  tags:
6
  - 3d-object-detection
7
  - computer-vision
@@ -13,76 +13,167 @@ language:
13
  - en
14
  ---
15
 
16
- # M2I Dataset
 
 
17
 
18
- The M2I dataset is a synthetic dataset introduced in the paper [MIC-BEV: Multi-Infrastructure Camera Bird's-Eye-View Transformer with Relation-Aware Fusion for 3D Object Detection](https://huggingface.co/papers/2510.24688).
 
19
 
20
- M2I is designed to support training and evaluation of models for infrastructure-based multi-camera 3D object detection. It features diverse camera configurations, road layouts, and environmental conditions. This dataset is crucial for developing robust perception systems in intelligent transportation environments and is used in conjunction with frameworks like MIC-BEV.
21
 
22
- ## Paper
23
 
24
- [MIC-BEV: Multi-Infrastructure Camera Bird's-Eye-View Transformer with Relation-Aware Fusion for 3D Object Detection](https://huggingface.co/papers/2510.24688)
 
 
25
 
26
- ## Code
27
 
28
- The official code repository for MIC-BEV, which utilizes this dataset, can be found here: [https://github.com/HandsomeYun/MIC-BEV](https://github.com/HandsomeYun/MIC-BEV)
29
 
30
- ## Sample Usage
 
 
 
 
 
 
 
31
 
32
- The M2I dataset is intended to be used with the MIC-BEV codebase for training and evaluation of 3D object detection models. The following snippets demonstrate how to prepare the dataset and perform quick training/evaluation, as outlined in the [MIC-BEV GitHub repository](https://github.com/HandsomeYun/MIC-BEV).
 
 
 
 
 
 
 
 
 
 
 
33
 
34
- ### Prepare Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
- To prepare the M2I-style data (e.g., V2XSet), use the provided preprocessing script from the MIC-BEV repository:
 
 
 
 
 
 
 
 
 
 
37
 
38
  ```bash
39
- python MIC-BEV_Official/tools/data_converter/mic-bev/create_v2xset_multiple_map.py
 
 
40
  ```
41
- This script processes raw V2XSet-format data and generates the necessary multi-map annotations for training MIC-BEV with M2I.
42
-
43
- ### Quick Start (Training and Evaluation)
44
-
45
- After setting up the environment (refer to the GitHub repository's `Installation` section for full details) and preparing the dataset, you can use the MIC-BEV configuration files for training and evaluation:
46
-
47
- 1. **Training**: Use the MIC-BEV configuration file:
48
- ```bash
49
- python tools/train.py projects/configs/micbev/mic-bev-seg-gnn.py
50
- ```
51
-
52
- 2. **Evaluation**: Evaluate your trained model:
53
- ```bash
54
- python tools/test.py projects/configs/micbev/mic-bev-seg-gnn.py /path/to/checkpoint.pth --eval bbox
55
- ```
56
-
57
-
58
- ## Citation
59
- If you are using our OpenCDA framework or codes for your development, please cite the following paper:
60
- ```bibtex
61
- @misc{zhang2025micbev,
62
- title = {MIC-BEV: Multi-Infrastructure Camera Bird's-Eye-View Transformer with Relation-Aware Fusion for 3D Object Detection},
63
- author = {Zhang, Yun and Zheng, Zhaoliang and Liu, Johnson and Huang, Zhiyu and Zhou, Zewei and Meng, Zonglin and Cai, Tianhui and Ma, Jiaqi},
64
- year = {2025},
65
- eprint = {2510.24688},
66
- archivePrefix= {arXiv},
67
- primaryClass = {cs.CV},
68
- url = {https://arxiv.org/abs/2510.24688}
69
- }
70
 
 
 
 
 
 
 
71
  ```
72
- The arxiv link to the paper: [https://arxiv.org/abs/2107.06260](https://arxiv.org/abs/2510.24688)
73
 
74
- ## License
75
 
76
- This project is released under a UCLA research license.
77
 
78
- The MIC-BEV codebase is provided for non-commercial academic research only.
79
- Researchers are permitted to use and modify the source code for their own research purposes.
80
 
81
- The following uses are not permitted under this license:
82
- - Commercial use of any kind
83
- - Contracted work that generates corporate or institutional revenue
84
- - Redistribution for commercial products or services
85
- - Please refer to the LICENSE file for full terms and for information on potential commercial licensing opportunities.
86
 
87
- ## Contributors
88
- MIC-BEV is mainly supported by the [UCLA Mobility Lab](https://mobility-lab.seas.ucla.edu/). <br>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  task_categories:
3
  - object-detection
4
+ license: cc-by-4.0
5
  tags:
6
  - 3d-object-detection
7
  - computer-vision
 
13
  - en
14
  ---
15
 
16
+ ---
17
+
18
+ # M2I: Multi-camera Multi-layout Infrastructure Dataset
19
 
20
+ [![Paper](https://img.shields.io/badge/Paper-arXiv-b31b1b.svg)](https://arxiv.org/abs/2510.24688)
21
+ [![Code](https://img.shields.io/badge/GitHub-MIC--BEV-blue.svg)](https://github.com/HandsomeYun/MIC-BEV)
22
 
23
+ The **M2I (Multi-camera Multi-layout Infrastructure)** dataset is a large-scale synthetic dataset for **infrastructure-based multi-camera 3D object detection**. It is introduced in our paper:
24
 
25
+ > **MIC-BEV: Multi-Infrastructure Camera Bird's-Eye-View Transformer with Relation-Aware Fusion for 3D Object Detection**
26
 
27
+ M2I is designed to support research on intelligent transportation systems by providing diverse infrastructure camera deployments, road layouts, environmental conditions, and traffic scenarios for Bird's-Eye-View (BEV) perception.
28
+ ---
29
+ # Overview
30
 
31
+ M2I provides synchronized multi-camera observations together with 3D object annotations for infrastructure perception.
32
 
33
+ The dataset includes
34
 
35
+ - Multi-camera RGB images
36
+ - Camera calibration (intrinsics and extrinsics)
37
+ - 3D bounding box annotations
38
+ - BEV semantic maps
39
+ - Temporal sequences
40
+ - Camera visibility information
41
+ ---
42
+ # Dataset Features
43
 
44
+ Compared with existing infrastructure perception datasets, M2I provides:
45
+
46
+ - Diverse road layouts (intersections, highways, roundabouts, ramps, etc.)
47
+ - Variable camera configurations (1–4 cameras)
48
+ - Heterogeneous camera intrinsics and extrinsics
49
+ - Multiple camera mounting locations and heights
50
+ - Diverse weather conditions
51
+ - Diverse illumination conditions
52
+ - Dynamic traffic density
53
+ - Sensor degradation (blur, masking, calibration perturbation)
54
+
55
+ ---
56
 
57
+ # Dataset Structure
58
+
59
+ After downloading the dataset from Hugging Face, the repository contains:
60
+
61
+ ```text
62
+ M2I/
63
+
64
+ ├── M2I_split_dataset.tar.gz.part-*
65
+ ├── README.md
66
+ ```
67
+
68
+ The RGB images are stored as multipart archives to simplify distribution on Hugging Face.
69
+
70
+ After extracting the archive, the dataset is organized as
71
+
72
+ ```text
73
+ M2I/
74
+
75
+ ├── M2I_split_dataset/
76
+ │ ├── train/
77
+ │ ├── val/
78
+ │ └── test/
79
+ ├── M2I_json/
80
+ ├── Town01.xodr
81
+ ├── Town03.xodr
82
+ ├── Town04.xodr
83
+ ├── Town05.xodr
84
+ ├── Town06.xodr
85
+ ├── Town07.xodr
86
+ ├── Town10HD_Opt.xodr
87
+ └── README.md
88
+ ```
89
 
90
+ where
91
+
92
+ - **M2I_split_dataset/** contains the RGB images and annotations.
93
+ - **M2I_json/** contains the raw frame-level metadata before conversion to training annotations.
94
+ - **Town0X.xodr** and **Town*.xodr** contain the CARLA HD maps used to generate the scenes.
95
+
96
+ ---
97
+
98
+ # Download
99
+
100
+ Download the dataset using the Hugging Face CLI:
101
 
102
  ```bash
103
+ hf download handsomeYun/M2I \
104
+ --repo-type dataset \
105
+ --local-dir /path/to/M2I
106
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
 
108
+ Extract the image archive:
109
+
110
+ ```bash
111
+ mkdir -p /path/to/M2I_data
112
+
113
+ cat M2I_split_dataset.tar.gz.part-* | tar -xzvf - -C /path/to/M2I_data
114
  ```
 
115
 
116
+ ---
117
 
118
+ # Preparing Training Annotations
119
 
120
+ After extracting the dataset, generate the training annotations using the MIC-BEV preprocessing script:
 
121
 
122
+ ```bash
123
+ python tools/data_converter/mic-bev/create_v2xset_multiple_map.py
124
+ ```
 
 
125
 
126
+ Please refer to the MIC-BEV repository for detailed training instructions.
127
+
128
+ ---
129
+
130
+ # Related Project
131
+
132
+ The official implementation of MIC-BEV is available at
133
+
134
+ https://github.com/HandsomeYun/MIC-BEV
135
+
136
+ The repository contains
137
+
138
+ - Installation instructions
139
+ - Dataset preprocessing
140
+ - Training
141
+ - Evaluation
142
+ - Visualization
143
+
144
+ ---
145
+
146
+ # License
147
+
148
+ The M2I dataset is released under the **CC BY 4.0** license.
149
+
150
+ Please also comply with the licenses of any third-party software or datasets used together with this project.
151
+
152
+ ---
153
+
154
+ # Acknowledgements
155
+
156
+ The M2I dataset was developed by the UCLA Mobility Lab as part of the MIC-BEV project.
157
+
158
+ MIC-BEV builds upon several outstanding open-source projects, including:
159
+
160
+ - BEVFormer
161
+ - DETR3D
162
+ - DD3D
163
+ - MMDetection3D
164
+ - RoScenes
165
+
166
+ ---
167
+
168
+ # Citation
169
+
170
+ If you use M2I in your research, please cite:
171
+
172
+ ```bibtex
173
+ @article{zhang2025micbev,
174
+ title={MIC-BEV: Multi-Infrastructure Camera Bird's-Eye-View Transformer with Relation-Aware Fusion for 3D Object Detection},
175
+ author={Zhang, Yun and Zheng, Zhaoliang and Liu, Johnson and Huang, Zhiyu and Zhou, Zewei and Meng, Zonglin and Cai, Tianhui and Ma, Jiaqi},
176
+ journal={arXiv preprint arXiv:2510.24688},
177
+ year={2025}
178
+ }
179
+ ```