Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
{}
|
3 |
+
---
|
4 |
+
# OPV2V-H dataset
|
5 |
+
|
6 |
+
Based on the original OPV2V dataset, we supplemented 16-line, 32-line lidar data for each agent, as well as 4 depth cameras. Annotations will be shared with the original OPV2V, so please download the original OPV2V dataset as well.
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
1. Depth Data
|
11 |
+
|
12 |
+
`OPV2V-H-depth.zip ` stores the depth camera data. You can directly uncompress them:
|
13 |
+
|
14 |
+
```
|
15 |
+
unzip OPV2V-H-depth.zip
|
16 |
+
```
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
2. LiDAR Data
|
21 |
+
|
22 |
+
`OPV2V-H-LiDAR-partxx` is a volume-compressed slice. They store 16-line and 32-line LiDAR data. You can unzip them using
|
23 |
+
|
24 |
+
```
|
25 |
+
cat OPV2V-H-LiDAR-part* > OPV2V-H-LiDAR.zip
|
26 |
+
unzip OPV2V-H-LiDAR.zip
|
27 |
+
```
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
A desired output structure will be
|
32 |
+
|
33 |
+
```
|
34 |
+
─ OPV2V_Hetero
|
35 |
+
├── test
|
36 |
+
├── train
|
37 |
+
└── validate
|
38 |
+
```
|