Amol Kaushik commited on
Commit
9577f32
·
1 Parent(s): 0eec79f

Add A8 report and sample outputs

Browse files
A8/A8_Report.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
A8/sample_keypoints.csv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ frame_id,timestamp,inference_time_ms,keypoint,x,y,confidence
2
+ 0,0.0,28.4,nose,0.498,0.404,0.99
3
+ 0,0.0,28.4,left_eye,0.456,0.361,0.975
4
+ 0,0.0,28.4,right_eye,0.562,0.362,0.973
5
+ 0,0.0,28.4,left_ear,0.392,0.394,0.911
6
+ 0,0.0,28.4,right_ear,0.64,0.403,0.918
7
+ 0,0.0,28.4,left_shoulder,0.252,0.732,0.942
8
+ 0,0.0,28.4,right_shoulder,0.774,0.731,0.946
9
+ 0,0.0,28.4,left_elbow,0.305,0.69,0.44
10
+ 0,0.0,28.4,right_elbow,0.708,0.69,0.452
11
+ 0,0.0,28.4,left_wrist,0.28,0.77,0.181
12
+ 0,0.0,28.4,right_wrist,0.733,0.77,0.193
13
+ 0,0.0,28.4,left_hip,0.445,0.784,0.612
14
+ 0,0.0,28.4,right_hip,0.553,0.784,0.627
15
+ 0,0.0,28.4,left_knee,0.455,0.885,0.144
16
+ 0,0.0,28.4,right_knee,0.547,0.885,0.151
17
+ 0,0.0,28.4,left_ankle,0.465,0.97,0.103
18
+ 0,0.0,28.4,right_ankle,0.537,0.97,0.109
A8/sample_keypoints.json ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "source": "test_person.jpg",
3
+ "model": "movenet/lightning",
4
+ "frames": [
5
+ {
6
+ "frame_id": 0,
7
+ "timestamp": 0.0,
8
+ "inference_time_ms": 28.4,
9
+ "keypoints": {
10
+ "nose": {
11
+ "x": 0.498,
12
+ "y": 0.404,
13
+ "confidence": 0.99
14
+ },
15
+ "left_eye": {
16
+ "x": 0.456,
17
+ "y": 0.361,
18
+ "confidence": 0.975
19
+ },
20
+ "right_eye": {
21
+ "x": 0.562,
22
+ "y": 0.362,
23
+ "confidence": 0.973
24
+ },
25
+ "left_ear": {
26
+ "x": 0.392,
27
+ "y": 0.394,
28
+ "confidence": 0.911
29
+ },
30
+ "right_ear": {
31
+ "x": 0.64,
32
+ "y": 0.403,
33
+ "confidence": 0.918
34
+ },
35
+ "left_shoulder": {
36
+ "x": 0.252,
37
+ "y": 0.732,
38
+ "confidence": 0.942
39
+ },
40
+ "right_shoulder": {
41
+ "x": 0.774,
42
+ "y": 0.731,
43
+ "confidence": 0.946
44
+ },
45
+ "left_elbow": {
46
+ "x": 0.305,
47
+ "y": 0.69,
48
+ "confidence": 0.44
49
+ },
50
+ "right_elbow": {
51
+ "x": 0.708,
52
+ "y": 0.69,
53
+ "confidence": 0.452
54
+ },
55
+ "left_wrist": {
56
+ "x": 0.28,
57
+ "y": 0.77,
58
+ "confidence": 0.181
59
+ },
60
+ "right_wrist": {
61
+ "x": 0.733,
62
+ "y": 0.77,
63
+ "confidence": 0.193
64
+ },
65
+ "left_hip": {
66
+ "x": 0.445,
67
+ "y": 0.784,
68
+ "confidence": 0.612
69
+ },
70
+ "right_hip": {
71
+ "x": 0.553,
72
+ "y": 0.784,
73
+ "confidence": 0.627
74
+ },
75
+ "left_knee": {
76
+ "x": 0.455,
77
+ "y": 0.885,
78
+ "confidence": 0.144
79
+ },
80
+ "right_knee": {
81
+ "x": 0.547,
82
+ "y": 0.885,
83
+ "confidence": 0.151
84
+ },
85
+ "left_ankle": {
86
+ "x": 0.465,
87
+ "y": 0.97,
88
+ "confidence": 0.103
89
+ },
90
+ "right_ankle": {
91
+ "x": 0.537,
92
+ "y": 0.97,
93
+ "confidence": 0.109
94
+ }
95
+ }
96
+ }
97
+ ]
98
+ }