Silicon23 commited on
Commit
42cca04
·
1 Parent(s): 9c29bce

Add dataset README and index.json

Browse files
Files changed (2) hide show
  1. README.md +86 -0
  2. data/index.json +0 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - object-detection
4
+ - depth-estimation
5
+ tags:
6
+ - 3d-object-detection
7
+ - 3d-bounding-box
8
+ - point-cloud
9
+ - monocular-3d
10
+ pretty_name: WildDet3D Visualization Data
11
+ ---
12
+
13
+ # WildDet3D Visualization Data
14
+
15
+ This repository hosts the visualization data for the **WildDet3D-Bench** benchmark — a human-annotated evaluation set for monocular 3D object detection in the wild.
16
+
17
+ ## Dataset Overview
18
+
19
+ WildDet3D-Bench is a validation set of **2,470 images** drawn from three source datasets, with **9,256 human-verified 3D bounding box annotations** across 2,196 images.
20
+
21
+ | Source | Images | Description |
22
+ |--------|-------:|-------------|
23
+ | COCO Val | 424 | MS-COCO 2017 validation |
24
+ | LVIS Train | 1,113 | LVIS v1.0 (COCO train images) |
25
+ | Objects365 Val | 933 | Objects365 v2 validation |
26
+ | **Total** | **2,470** | |
27
+
28
+ Each annotation has exactly **one human-selected 3D bounding box**, chosen from candidates generated by multiple 3D estimation algorithms (LA3D, SAM3D, Algorithm, DetAny3D, 3D-MooD) and validated through a multi-stage pipeline of crowdsourced annotation, quality control, human rejection review, and geometric filtering.
29
+
30
+ ## Repository Structure
31
+
32
+ ```
33
+ .
34
+ ├── data/ # WildDet3D-Bench ground truth (for benchmark visualization)
35
+ │ ├── index.json # Master index with image metadata and scene hierarchy
36
+ │ ├── boxes/ # Per-image JSON: 2D/3D boxes, categories, quality flags
37
+ │ ├── images/ # Super-resolution images (4× upscaled)
38
+ │ ├── images_annotated/ # Thumbnails with pre-rendered 3D box overlays
39
+ │ ├── camera/ # Camera intrinsic parameters
40
+ │ └── pointclouds/ # PLY point clouds (~250k points each)
41
+
42
+ └── model/ # Model predictions on WildDet3D-Bench (for model comparison visualization)
43
+ ├── images/ # Images with model prediction overlays
44
+ ├── box/ # Per-image model prediction boxes
45
+ └── text/ # Per-image model prediction metadata
46
+ ```
47
+
48
+ ### `data/` — Benchmark Ground Truth
49
+
50
+ Contains the full WildDet3D-Bench validation set with human-annotated 3D bounding boxes:
51
+
52
+ - **2,196 images** with at least one valid 3D annotation (274 images filtered out)
53
+ - **Per-image box data** includes: 2D boxes (in 4× SR coordinates), 3D boxes (10D: center + dimensions + quaternion), category names, `ignore3D` flags, human quality ratings
54
+ - **Point clouds** reconstructed from monocular depth estimation
55
+ - **Annotated thumbnails** with 3D boxes projected onto images, colored by object category
56
+
57
+ ### `model/` — Model Predictions
58
+
59
+ Contains predictions from different 3D detection models evaluated on the benchmark, used by a separate model comparison visualization server.
60
+
61
+ ## 3D Box Format
62
+
63
+ Each 3D bounding box is represented as a 10-element array:
64
+
65
+ ```
66
+ [cx, cy, cz, w, h, l, qw, qx, qy, qz]
67
+ ```
68
+
69
+ | Field | Description |
70
+ |-------|-------------|
71
+ | `cx, cy, cz` | Box center in camera coordinates (meters) |
72
+ | `w, h, l` | Box dimensions (meters) |
73
+ | `qw, qx, qy, qz` | Rotation as unit quaternion |
74
+
75
+ **Coordinate system**: OpenCV camera convention (X-right, Y-down, Z-forward).
76
+
77
+ ## Annotation Pipeline
78
+
79
+ 1. **Monocular depth estimation** — per-pixel depth maps
80
+ 2. **4× super-resolution** — higher quality point clouds
81
+ 3. **Multi-algorithm 3D box generation** — candidate boxes per 2D detection
82
+ 4. **VLM scoring** — automated quality scoring (6 criteria, 0–12 total)
83
+ 5. **Human annotation** (Prolific) — workers select best candidate and rate quality
84
+ 6. **Human rejection review** — second-pass review of selected boxes
85
+ 7. **Geometric filtering** — GPT-estimated size validation and depth ratio checks
86
+ 8. **Composite image removal** — filter collage/grid images
data/index.json ADDED
The diff for this file is too large to render. See raw diff