HereZDeSanta commited on
Commit
3145c19
·
verified ·
1 Parent(s): a1a1890

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pillars Dataset
2
+
3
+ This dataset is designed for detecting roadside vertical structures - pillars, poles, and pylons - which are critical static obstacles for autonomous vehicle navigation. It contains 12K bounding box annotations from two side/rear-facing cameras across 6 driving sessions in urban and suburban environments.
4
+
5
+ ## Dataset Description
6
+
7
+ - **Source:** Fleet of autonomous vehicles, urban and suburban roads
8
+ - **Sensor:** 2x LUCID TRI054S-CC cameras (2880×1860), front/side facing
9
+ - **Coverage:** ~12K bounding box annotations, ~1.4K unique images, single class
10
+ - **Splits:** Train 70% (11,080 rows, 1,242 images), Test 30% (1,035 rows, 139 images) - split by driving session to prevent temporal leakage
11
+ - **Format:** Parquet (annotations) + JPEG (images) in `train/` and `test/` subdirectories
12
+
13
+ ### Classes (1)
14
+
15
+ | Class | Count | Description |
16
+ |-------|-------|-------------|
17
+ | pillar | 12,115 | Roadside pillar / pole / pylon |
18
+
19
+ ### Data Fields
20
+
21
+ | Field | Type | Description |
22
+ |-------|------|-------------|
23
+ | bbox_msg_id | VARCHAR | UUID linking to the original bounding box message |
24
+ | object_id | BIGINT | Unique object tracking ID |
25
+ | label | VARCHAR | Object class (`pillar`) |
26
+ | bbox_coords | DOUBLE[4] | Bounding box [x, y, width, height] in pixel coordinates |
27
+ | timestamp_ns | BIGINT | ROS bag timestamp (nanoseconds) |
28
+ | image_path | VARCHAR | Relative path to JPEG in `train/` or `test/` |
29
+
30
+ ### Data Splits
31
+
32
+ | Split | Rows | Images |
33
+ |-------|------|--------|
34
+ | train | 11,080 | 1,242 |
35
+ | test | 1,035 | 139 |
36
+
37
+ ### Dataset Structure
38
+
39
+ ```
40
+ pillars_dataset/
41
+ ├── annotations.parquet # All annotations (12,115 rows)
42
+ ├── train/
43
+ │ ├── camera_1C0FAF5250E2/ # 41 images
44
+ │ └── camera_1C0FAF57D6F8/ # 1,201 images
45
+ └── test/
46
+ ├── camera_1C0FAF5250E2/ # 40 images
47
+ └── camera_1C0FAF57D6F8/ # 99 images
48
+ ```
49
+
50
+ ### Usage
51
+
52
+ ```python
53
+ import pandas as pd
54
+
55
+ df = pd.read_parquet("annotations.parquet")
56
+ print(f"{len(df)} annotations, {df.image_path.nunique()} unique images")
57
+ ```