File size: 2,661 Bytes
9752562
 
 
 
a3f031c
9752562
 
 
 
 
 
 
 
 
18fc9bc
 
 
 
 
 
 
 
 
 
 
 
 
385584e
 
 
 
5bfc579
385584e
a042d39
385584e
 
 
 
a042d39
 
 
 
 
 
 
385584e
 
 
 
691c49b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18fc9bc
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
license: cc-by-nc-4.0
task_categories:
- object-detection
- robotics
tags:
- robotics
- autonomous driving
- cooperative perception
- sensor fusion
- LiDAR
- Camera
size_categories:
- 100B<n<1T
---


# CoInfra: A Large-Scale Cooperative Infrastructure Perception System and Dataset in Adverse Weather

[![arXiv](https://img.shields.io/badge/arXiv-2507.02245-red?style=for-the-badge&logo=arxiv)](https://arxiv.org/abs/2507.02245)
[![GitHub](https://img.shields.io/badge/GitHub-CoInfra-blue?style=for-the-badge&logo=github)](https://github.com/NingMingHao/CoInfra)

**CoInfra** is a real-world, large-scale cooperative perception system and dataset designed to support research in multi-agent perception, especially under **adverse weather conditions** (snow, rain, freezing rain). It features 14 synchronized infrastructure nodes, each with a LiDAR and dual cameras, deployed across a shared region for full-scene coverage.


![DatasetExample.jpg](https://cdn-uploads.huggingface.co/production/uploads/6866f8a4985e9f14ccefffe5/LeurjkJvnrD-HfW_kfKFV.jpeg)

## Download Instructions
**Use the huggingface_hub CLI or library**
```bash
pip install huggingface_hub
```

Create a python script in "CoInfra" folder, and run it:

```python
from huggingface_hub import snapshot_download

path = snapshot_download(
    repo_id="MinghaoNing/CoInfra",
    repo_type="dataset",
    local_dir=".",                # <-- download into current folder
    local_dir_use_symlinks=False  # <-- ensure actual files are copied
)

print("Downloaded to:", path)
```

This will download the full dataset repo (all files) to a local folder.

## Extraction Instructions
The archives are compressed using `zstd` for fast decompression. To extract the dataset, you need to have `zstd` installed. You can install it via package managers like `apt`, `brew`. 

**To extract an archive, use the following command:**
```bash
tar --use-compress-program=zstd -xf [archive_file.tar.zst]
```

**To extract all archives in a directory, you can use:**
```bash
for archive in *.tar.zst; do
    echo "Extracting $archive..."
    tar --use-compress-program=zstd -xf "$archive"
done
```

## 📖 Citation

If you use CoInfra, please cite:
```bibtex
@article
{ning2025coinfra,
title={CoInfra: A Large-Scale Cooperative Infrastructure Perception System and Dataset in Adverse Weather},
author={Ning, Minghao and Yang, Yufeng and Shu, Keqi and Huang, Shucheng and Zhong, Jiaming and Salehi, Maryam and Rahmani, Mahdi and Lu, Yukun and Sun, Chen and Saleh, Aladdin and Hashemi, Ehsan and Khajepour, Amir},
journal={arXiv preprint arXiv:2507.02245},
url={https://arxiv.org/abs/2507.02245},
year={2025}
}
```