Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
annotations_creators:
|
| 3 |
+
- expert-generated
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
language_creators:
|
| 7 |
+
- expert-generated
|
| 8 |
+
license: cc-by-4.0
|
| 9 |
+
multimodality:
|
| 10 |
+
- video
|
| 11 |
+
- tabular
|
| 12 |
+
pretty_name: Event Human Motion Tracking Dataset
|
| 13 |
+
size_categories:
|
| 14 |
+
- 100M<n<1B
|
| 15 |
+
tags:
|
| 16 |
+
- event-based-vision
|
| 17 |
+
- neuromorphic
|
| 18 |
+
- human-motion-tracking
|
| 19 |
+
- computer-vision
|
| 20 |
+
- object-tracking
|
| 21 |
+
- sensor-bias-optimization
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
# Dataset Card for Event Human Motion Tracking Dataset
|
| 25 |
+
|
| 26 |
+
## Table of Contents
|
| 27 |
+
- [Dataset Description](#dataset-description)
|
| 28 |
+
- [Dataset Summary](#dataset-summary)
|
| 29 |
+
- [Supported Tasks](#supported-tasks)
|
| 30 |
+
- [Dataset Structure](#dataset-structure)
|
| 31 |
+
- [Directory Layout](#directory-layout)
|
| 32 |
+
- [File Descriptions](#file-descriptions)
|
| 33 |
+
- [Dataset Creation](#dataset-creation)
|
| 34 |
+
- [Sensors & Hardware Setup](#sensors--hardware-setup)
|
| 35 |
+
- [Data Collection & Scenarios](#data-collection--scenarios)
|
| 36 |
+
- [Usage & Integration](#usage--integration)
|
| 37 |
+
- [Citation](#citation)
|
| 38 |
+
|
| 39 |
+
---
|
| 40 |
+
|
| 41 |
+
## Dataset Description
|
| 42 |
+
|
| 43 |
+
### Dataset Summary
|
| 44 |
+
The **Event Human Motion Tracking Dataset** is a dataset designed for fine-grained human motion detection, tracking, and gait/pose analysis. Recorded with a **76° Field of View (FoV)** event camera setup, the dataset explicitly evaluates the performance impact of **Default vs. Optimized sensor bias parameters** on background noise, visual clarity, and object tracking robustness.
|
| 45 |
+
|
| 46 |
+
The dataset provides synchronized **`.avi` video recordings** for visual inspection, algorithmic benchmarking, and spatial ground-truth verification across both bias configurations.
|
| 47 |
+
|
| 48 |
+
### Supported Tasks
|
| 49 |
+
* **Human Motion Tracking:** Bounding box detection and temporal association across dynamic motion recordings.
|
| 50 |
+
* **Sensor Bias Benchmarking:** Comparative evaluation of default vs. custom-optimized sensor bias settings ($76^\circ$ FoV).
|
| 51 |
+
* **Neuromorphic Motion Analysis:** Feature extraction, velocity estimation, and performance assessment under varied bias regimes.
|
| 52 |
+
|
| 53 |
+
---
|
| 54 |
+
|
| 55 |
+
## Dataset Structure
|
| 56 |
+
|
| 57 |
+
### Directory Layout
|
| 58 |
+
The repository contains `.avi` video recordings separated by bias configuration, alongside compressed archives for annotations and parameter settings:
|
| 59 |
+
|
| 60 |
+
```text
|
| 61 |
+
Event-Human-Motion-Tracking-Dataset/
|
| 62 |
+
├── Default-Bias-Data-76-Degree-FoV/ # Video recordings captured with Default Bias (.avi)
|
| 63 |
+
│ ├── recording_01.avi
|
| 64 |
+
│ └── recording_02.avi
|
| 65 |
+
├── Optimized-Bias-Data-76-Degree-FoV/ # Video recordings captured with Optimized Bias (.avi)
|
| 66 |
+
│ ├── recording_01.avi
|
| 67 |
+
│ └── recording_02.avi
|
| 68 |
+
├── Bias-Settings-Real-Time.zip # Real-time sensor bias configuration logs and register settings
|
| 69 |
+
├── Mixed-Bias-Data-Annotations.zip # Ground truth bounding box annotations and track IDs
|
| 70 |
+
└── README.md
|