forked from hx173149/C3D-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathactivities.py
35 lines (30 loc) · 1.17 KB
/
activities.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Number of samples per class for training dataset
samples_number = 400
# Total list of activities
activities = {'head:Turn right': 0,
'head:Turn left': 1,
'head:Raise the head': 2,
'head:Lean forward': 3,
'r-arm:Shoulder extension': 4,
'r-arm:Shoulder adduction': 5,
'r-arm:Roll the wrist': 6,
'r-arm:Elbow flexion': 7,
'r-arm:Elbow extension': 8,
'r-arm:Shoulder flexion': 9,
'r-arm:Shoulder abduction': 10,
'l-arm:Shoulder extension': 11,
'l-arm:Shoulder abduction': 12,
'l-arm:Roll the wrist': 13,
'l-arm:Elbow flexion': 14,
'l-arm:Elbow extension': 15,
'l-arm:Shoulder flexion': 16,
'l-arm:Shoulder adduction': 17,
'r-leg:Hip flexion': 18,
'r-leg:Hip extension': 19,
'r-leg:Knee flexion': 20,
'r-leg:Knee extension': 21,
'l-leg:Hip flexion': 22,
'l-leg:Hip extension': 23,
'l-leg:Knee extension': 24,
'l-leg:Knee flexion': 25
}