chore: updated Dataset card.
Browse files
README.md
CHANGED
@@ -11,4 +11,59 @@ tags:
|
|
11 |
- gestures
|
12 |
- classification
|
13 |
- robotics
|
14 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
- gestures
|
12 |
- classification
|
13 |
- robotics
|
14 |
+
---
|
15 |
+
|
16 |
+
# Real Time Gesture Recognition Dataset
|
17 |
+
The dataset is divided into two folders: `dynamic_gestures` and `static_gestures`. The first contains loosely-timed sessions of gesture recordings where the gesture is repeated several times between intervals of rest. The second contains a single recording of each gesture, where the gesture is held for a few seconds. The gestures are: `baseline`, `fist`, `up`, `down`, `peace`, and `lift`. New gesture recordings and more gestures will be uploaded soon.
|
18 |
+
Every subject has two types of recordings: the raw EMG data in the `raw` folder and the FFT data in the `fft` folder.
|
19 |
+
Each individual recording is a CSV file dedicated to a single gesture performed by a subject.
|
20 |
+
|
21 |
+
## Structure
|
22 |
+
```
|
23 |
+
dynamic_gestures
|
24 |
+
├── session-DD_MM_YY
|
25 |
+
│ ├── subject1
|
26 |
+
│ │ ├── fft
|
27 |
+
│ │ │ ├── fft_subject1_baseline.csv
|
28 |
+
│ │ │ ├── fft_subject1_fist.csv
|
29 |
+
│ │ │ ├── fft_subject1_up.csv
|
30 |
+
│ │ │ ├── ...
|
31 |
+
│ │ ├── raw
|
32 |
+
│ │ │ ├── subject1_baseline.csv
|
33 |
+
│ │ │ ├── subject1_fist.csv
|
34 |
+
│ │ │ ├── subject1_up.csv
|
35 |
+
│ │ │ ├── ...
|
36 |
+
│ ├── subject2
|
37 |
+
│ └── ...
|
38 |
+
├── session-DD_MM_YY
|
39 |
+
└── ...
|
40 |
+
static_gestures
|
41 |
+
├── session-DD_MM_YY
|
42 |
+
│ ├── subject1
|
43 |
+
│ │ ├── fft
|
44 |
+
│ │ │ ├── fft_subject1_baseline.csv
|
45 |
+
│ │ │ ├── fft_subject1_fist.csv
|
46 |
+
│ │ │ ├── fft_subject1_up.csv
|
47 |
+
│ │ │ ├── ...
|
48 |
+
│ │ ├── raw
|
49 |
+
│ │ │ ├── subject1_baseline.csv
|
50 |
+
│ │ │ ├── subject1_fist.csv
|
51 |
+
│ │ │ ├── subject1_up.csv
|
52 |
+
│ │ │ ├── ...
|
53 |
+
│ ├── subject2
|
54 |
+
│ └── ...
|
55 |
+
├── session-DD_MM_YY
|
56 |
+
└── ...
|
57 |
+
```
|
58 |
+
|
59 |
+
## Contents
|
60 |
+
## Raw EMG Data
|
61 |
+
The raw EMG data is a header-less CSV file with the columns containing 8 successive EMG readings from the corresponding sensor:
|
62 |
+
```
|
63 |
+
[sensor 1] [sensor 2] [sensor 3] [sensor 4] [sensor 5]
|
64 |
+
[0]: [8 readings][8 readings][8 readings][8 readings][8 readings]
|
65 |
+
[1]: [8 readings][8 readings][8 readings][8 readings][8 readings]
|
66 |
+
[2]: [8 readings][8 readings][8 readings][8 readings][8 readings]
|
67 |
+
[3]: [8 readings][8 readings][8 readings][8 readings][8 readings]
|
68 |
+
...
|
69 |
+
```
|