HereZDeSanta commited on
Commit
b261a90
·
verified ·
1 Parent(s): e4bfe39

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Roadwork Cones Dataset
2
+
3
+ This dataset is designed for detecting roadwork-zone objects in autonomous driving scenarios. It contains three classes - traffic cones, roadworks signs, and vertical guide panels (delineators) - captured from four vehicle-mounted cameras across 39 driving sessions in urban and suburban roads.
4
+
5
+ ## Dataset Description
6
+
7
+ - **Source:** Fleet of autonomous vehicles, urban and suburban roads
8
+ - **Sensor:** 4x LUCID TRI054S-CC cameras (2880×1860), front/side facing
9
+ - **Coverage:** ~31K bounding box annotations, ~4.7K unique images, 3 classes
10
+ - **Splits:** Train 70% (22,841 rows, 2,871 images), Test 30% (8,561 rows, 1,803 images) - split by driving session to prevent temporal leakage
11
+ - **Format:** Parquet (annotations) + JPEG (images) in `train/` and `test/` subdirectories
12
+
13
+ ### Classes (3)
14
+
15
+ | Class | Count | Description |
16
+ |-------|-------|-------------|
17
+ | cone | 11,520 | Standard traffic cone |
18
+ | roadworks | 2,813 | Roadwork zone sign / panel |
19
+ | vertical_pannel | 17,069 | Vertical guide panel (delineator) |
20
+
21
+ ### Data Fields
22
+
23
+ | Field | Type | Description |
24
+ |-------|------|-------------|
25
+ | bbox_msg_id | VARCHAR | UUID linking to the original bounding box message |
26
+ | object_id | BIGINT | Unique object tracking ID |
27
+ | label | VARCHAR | Object class (`cone`, `roadworks`, `vertical_pannel`) |
28
+ | bbox_coords | DOUBLE[4] | Bounding box [x, y, width, height] in pixel coordinates |
29
+ | timestamp_ns | BIGINT | ROS bag timestamp (nanoseconds) |
30
+ | image_path | VARCHAR | Relative path to JPEG in `train/` or `test/` |
31
+
32
+ ### Data Splits
33
+
34
+ | Split | Rows | Images |
35
+ |-------|------|--------|
36
+ | train | 22,841 | 2,871 |
37
+ | test | 8,561 | 1,803 |
38
+
39
+ ### Dataset Structure
40
+
41
+ ```
42
+ roadwork_cones_dataset/
43
+ ├── annotations.parquet # All annotations (31,402 rows)
44
+ ├── train/
45
+ │ ├── camera_1C0FAF5250E2/ # 854 images
46
+ │ ├── camera_1C0FAF57D6F8/ # 1,415 images
47
+ │ ├── camera_1C0FAF5CA7B6/ # 494 images
48
+ │ └── camera_1C0FAF5CC14D/ # 108 images
49
+ └── test/
50
+ ├── camera_1C0FAF5250E2/ # 570 images
51
+ ├── camera_1C0FAF57D6F8/ # 1,193 images
52
+ ├── camera_1C0FAF5CA7B6/ # 40 images
53
+ └── camera_1C0FAF5CC14D/ # 0 images
54
+ ```
55
+
56
+ ### Usage
57
+
58
+ ```python
59
+ import pandas as pd
60
+
61
+ df = pd.read_parquet("annotations.parquet")
62
+ print(f"{len(df)} annotations, {df.image_path.nunique()} unique images")
63
+ ```