Datasets:
Update README (license + structure)
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
task_categories:
|
| 4 |
- object-detection
|
| 5 |
tags:
|
|
@@ -17,8 +17,17 @@ Real-world hand-held capture used as the primary test set in
|
|
| 17 |
[Event6D](https://github.com/mickeykang16/Event6D) (CVPR 2026). With the provided
|
| 18 |
checkpoints, our method achieves **mean ADDS 52.79** on this set.
|
| 19 |
|
| 20 |
-
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
## Layout
|
| 24 |
|
|
@@ -33,30 +42,57 @@ Event6D/
|
|
| 33 |
├── depth_aligned_to_color/
|
| 34 |
├── depth_aligned_to_event/
|
| 35 |
├── pose/ # GT object poses (4, 4, 4): 4 sub-timesteps per file
|
| 36 |
-
├── pose_orig/ # only for wine_1101/0001 — original poses before frame-shift fix
|
| 37 |
├── mask/
|
| 38 |
├── obj.txt # object id string (e.g. 011_wine_glass)
|
| 39 |
├── startend.txt
|
| 40 |
└── aligned_depth_pose.csv
|
| 41 |
```
|
| 42 |
|
| 43 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
-
|
| 46 |
-
`
|
| 47 |
-
`depth_qual*`. These are caches generated by the data reader on first use — running
|
| 48 |
-
evaluation against this dataset will lazily compute and write them under your local copy,
|
| 49 |
-
adding ~1 GB per sequence (~5-10 min one-time warmup per sequence).
|
| 50 |
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
-
|
| 54 |
-
object pose covering the interval `[T_XXXXXX, T_XXXXXX+1)`. `pose[0]` is at the same
|
| 55 |
-
instant as `rgb/XXXXXX.jpg`; `pose[1..3]` are intermediate samples toward the next frame.
|
| 56 |
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
the
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
|
| 61 |
## Download
|
| 62 |
|
|
@@ -67,4 +103,17 @@ huggingface-cli download mickeykang/Event6D --repo-type dataset \
|
|
| 67 |
|
| 68 |
## Citation
|
| 69 |
|
| 70 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
task_categories:
|
| 4 |
- object-detection
|
| 5 |
tags:
|
|
|
|
| 17 |
[Event6D](https://github.com/mickeykang16/Event6D) (CVPR 2026). With the provided
|
| 18 |
checkpoints, our method achieves **mean ADDS 52.79** on this set.
|
| 19 |
|
| 20 |
+
Hand-held capture of 14 daily YCB-style objects from random viewpoints and motions.
|
| 21 |
+
|
| 22 |
+
## Hardware
|
| 23 |
+
|
| 24 |
+
| Sensor | Model | Resolution | Rate |
|
| 25 |
+
|---|---|---|---|
|
| 26 |
+
| RGB-D | Intel RealSense D435i | 1280 × 720 | 30 FPS |
|
| 27 |
+
| Event | Prophesee IMX636 | 1280 × 720 | ≥ 5000 FPS |
|
| 28 |
+
|
| 29 |
+
Calibration (intrinsics + RGB↔event extrinsic) is shipped as `0001-camchain.yaml`
|
| 30 |
+
in the Kalibr camchain format.
|
| 31 |
|
| 32 |
## Layout
|
| 33 |
|
|
|
|
| 42 |
├── depth_aligned_to_color/
|
| 43 |
├── depth_aligned_to_event/
|
| 44 |
├── pose/ # GT object poses (4, 4, 4): 4 sub-timesteps per file
|
|
|
|
| 45 |
├── mask/
|
| 46 |
├── obj.txt # object id string (e.g. 011_wine_glass)
|
| 47 |
├── startend.txt
|
| 48 |
└── aligned_depth_pose.csv
|
| 49 |
```
|
| 50 |
|
| 51 |
+
## Ground-truth pose format
|
| 52 |
+
|
| 53 |
+
Although RGB is captured at 30 FPS, the event camera produces a continuous stream that
|
| 54 |
+
we sample at 120 Hz. To give pose labels at the finer rate, each `pose/XXXXXX.npy` stores
|
| 55 |
+
**4 poses** instead of one — these are 4 evenly-spaced sub-timesteps that span the
|
| 56 |
+
interval between RGB frame `XXXXXX` and the next RGB frame `XXXXXX+1`.
|
| 57 |
+
|
| 58 |
+
```
|
| 59 |
+
file shape: (4, 4, 4)
|
| 60 |
+
│ └──┴── 4×4 SE(3) rigid-body transform (object → camera)
|
| 61 |
+
└──── sub-timestep index 0..3 within one 30 FPS frame interval
|
| 62 |
+
```
|
| 63 |
|
| 64 |
+
- `pose[0]` is co-temporal with `rgb/XXXXXX.jpg` (the start of the interval).
|
| 65 |
+
- `pose[1]`, `pose[2]`, `pose[3]` are 1/4, 2/4, 3/4 of the way to `rgb/XXXXXX+1.jpg`.
|
|
|
|
|
|
|
|
|
|
| 66 |
|
| 67 |
+
Evaluators can therefore choose either:
|
| 68 |
+
- **30 FPS** — use only `pose[0]` per frame, comparing against the tracker's prediction
|
| 69 |
+
at the RGB instant; or
|
| 70 |
+
- **120 FPS** — use all 4 sub-timesteps, comparing against pose predictions emitted at
|
| 71 |
+
each event sub-step.
|
| 72 |
|
| 73 |
+
## Event file timing
|
|
|
|
|
|
|
| 74 |
|
| 75 |
+
Events are pre-packed into `parsed_events/XXXXXX.npz`. Each file holds the events that
|
| 76 |
+
occurred during the **inter-frame interval ending at RGB frame `XXXXXX`** — i.e.
|
| 77 |
+
the events between `rgb/(XXXXXX-1).jpg` and `rgb/XXXXXX.jpg` (a window of ≈ 1/30 s).
|
| 78 |
+
|
| 79 |
+
```
|
| 80 |
+
time →
|
| 81 |
+
┌────────────────── 1 / 30 s ──────────────────┐
|
| 82 |
+
rgb/(i−1).jpg rgb/i.jpg
|
| 83 |
+
│ │
|
| 84 |
+
│←── parsed_events/i.npz (events in interval) │
|
| 85 |
+
│ │
|
| 86 |
+
├──── pose/(i−1).npy[0..3] (4 sub-timesteps) ──┤
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
+
So for any frame `i`:
|
| 90 |
+
- `rgb/i.jpg` — snapshot at the end of the interval
|
| 91 |
+
- `parsed_events/i.npz` — events leading **up to** that snapshot
|
| 92 |
+
- `pose/(i−1).npy[0..3]` — 4 GT poses across the same interval, aligned with the events
|
| 93 |
+
|
| 94 |
+
Each `.npz` stores a structured array under key `data` with fields
|
| 95 |
+
`(x, y, t, p)` (event pixel coords, timestamp in seconds, polarity ±1).
|
| 96 |
|
| 97 |
## Download
|
| 98 |
|
|
|
|
| 103 |
|
| 104 |
## Citation
|
| 105 |
|
| 106 |
+
```bibtex
|
| 107 |
+
@inproceedings{kang2026event6d,
|
| 108 |
+
title = {Event6D: Event-based Novel Object 6D Pose Tracking},
|
| 109 |
+
author = {Kang, Jae-Young and
|
| 110 |
+
Cho, Hoonehee and
|
| 111 |
+
Lee, Taeyeop and
|
| 112 |
+
Kang, Minjun and
|
| 113 |
+
Wen, Bowen and
|
| 114 |
+
Kim, Youngho and
|
| 115 |
+
Yoon, Kuk-Jin},
|
| 116 |
+
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 117 |
+
year = {2026}
|
| 118 |
+
}
|
| 119 |
+
```
|