-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgesture_tracker.js
220 lines (189 loc) · 7.07 KB
/
gesture_tracker.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import { Utils } from './utils.js';
import { SilenceGesture } from './gestures/silence.js';
import { ThinkingGesture } from './gestures/thinking.js';
import { ThumbsUpGesture } from './gestures/thumbs_up.js';
import { MindBlownGesture } from './gestures/mind_blown.js';
import { HeadShakeGesture } from './gestures/head_shake.js';
import { ASLHelloGesture } from './gestures/hello.js';
import { ASLYesGesture } from './gestures/yes.js';
import { ASLNoGesture } from './gestures/no.js';
import { ASLThankYouGesture } from './gestures/thank_you.js';
const GESTURE_NAMES = Object.freeze({
THINKING: 'Thinking',
SILENCE: 'Silence',
THUMBS_UP: 'Thumbs Up',
MIND_BLOWN: 'Mind Blown',
HEAD_SHAKE: 'Head Shake',
ASL_YES: 'ASL: Yes',
ASL_HELLO: 'ASL: Hello',
ASL_NO: 'ASL: No',
ASL_THANK_YOU: 'ASL: Thank You'
});
// TODO: refactor out rest of gestures into their own class
class GestureTracker {
constructor() {
this.faceData = null;
this.activeGestures = [];
this.utils = new Utils();
this.silenceGesture = new SilenceGesture();
this.thinkingGesture = new ThinkingGesture();
this.thumbsUpGesture = new ThumbsUpGesture();
this.mindBlownGesture = new MindBlownGesture();
this.headShakeGesture = new HeadShakeGesture();
this.aslHelloGesture = new ASLHelloGesture();
this.aslYesGesture = new ASLYesGesture();
this.aslThankYouGesture = new ASLThankYouGesture();
this.aslNoGesture = new ASLNoGesture();
}
updateFaceData(faceLandmarks) {
if (faceLandmarks && faceLandmarks.length > 0) {
this.faceData = faceLandmarks[0];
}
}
trackASLNoGesture(handLandmarks, currentTime) {
if (!handLandmarks || handLandmarks.length === 0) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_NO);
return;
}
if (this.aslNoGesture.trackNoGesture(handLandmarks, currentTime)) {
if (!this.activeGestures.includes(GESTURE_NAMES.ASL_NO)) {
this.activeGestures.push(GESTURE_NAMES.ASL_NO);
}
return;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_NO);
}
}
trackASLThankYouGesture(handLandmarks, currentTime) {
if (!handLandmarks || handLandmarks.length === 0) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_THANK_YOU);
return;
}
if (this.aslThankYouGesture.trackThankYouGesture(handLandmarks, this.faceData, currentTime)) {
if (!this.activeGestures.includes(GESTURE_NAMES.ASL_THANK_YOU)) {
this.activeGestures.push(GESTURE_NAMES.ASL_THANK_YOU);
}
return;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_THANK_YOU);
}
}
trackASLYesGesture(handLandmarks, currentTime) {
if (!handLandmarks || handLandmarks.length === 0) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_YES);
return;
}
if (this.aslYesGesture.trackYesGesture(handLandmarks, currentTime)) {
if (!this.activeGestures.includes(GESTURE_NAMES.ASL_YES)) {
this.activeGestures.push(GESTURE_NAMES.ASL_YES);
}
return;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_YES);
}
}
trackASLHelloGesture(handLandmarks, currentTime) {
if (!handLandmarks || handLandmarks.length === 0) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_HELLO);
return;
}
if (this.aslHelloGesture.trackHelloGesture(handLandmarks, currentTime)) {
if (!this.activeGestures.includes(GESTURE_NAMES.ASL_HELLO)) {
this.activeGestures.push(GESTURE_NAMES.ASL_HELLO);
}
return;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.ASL_HELLO);
}
}
trackHeadShakeGesture(currentTime) {
if (!this.faceData) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.HEAD_SHAKE);
return;
}
if (this.headShakeGesture.trackHeadShake(this.faceData, currentTime)) {
if (!this.activeGestures.includes(GESTURE_NAMES.HEAD_SHAKE)) {
this.activeGestures.push(GESTURE_NAMES.HEAD_SHAKE);
}
return;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.HEAD_SHAKE);
}
}
trackMindBlownGesture(handLandmarks, currentTime) {
if (!handLandmarks || handLandmarks.length === 0) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.MIND_BLOWN);
return false;
}
if (this.mindBlownGesture.trackMindBlownGesture(handLandmarks, this.faceData, currentTime)) {
if (!this.activeGestures.includes(GESTURE_NAMES.MIND_BLOWN)) {
this.activeGestures.push(GESTURE_NAMES.MIND_BLOWN);
}
return true;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.MIND_BLOWN);
}
return false;
}
trackThinkingGesture(handLandmarks, currentTime) {
if (!handLandmarks || handLandmarks.length === 0) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.THINKING);
return;
}
if (this.thinkingGesture.trackThinkingGesture(handLandmarks, this.faceData, currentTime)) {
if (!this.activeGestures.includes(GESTURE_NAMES.THINKING)) {
this.activeGestures.push(GESTURE_NAMES.THINKING);
}
return;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.THINKING);
}
return;
}
trackThumbsUpGesture(gestureResults) {
if (!gestureResults?.gestures?.length) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.THUMBS_UP);
return;
}
if (this.thumbsUpGesture.trackThumbsUpGesture(gestureResults)) {
if (!this.activeGestures.includes(GESTURE_NAMES.THUMBS_UP)) {
this.activeGestures.push(GESTURE_NAMES.THUMBS_UP)
}
return;
} else {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.THUMBS_UP);
return;
}
}
trackSilenceGesture (handlandmarks, currentTime) {
if(this.silenceGesture.trackSilenceGesture(handlandmarks, this.faceData, currentTime)) {
// console.log('silence');
if (!this.activeGestures.includes(GESTURE_NAMES.SILENCE)) {
this.activeGestures.push(GESTURE_NAMES.SILENCE);
return;
}
} else {
// console.log('Not silence');
if (this.activeGestures.includes(GESTURE_NAMES.SILENCE)) {
this.activeGestures = this.activeGestures.filter(g => g !== GESTURE_NAMES.SILENCE);
return;
}
}
}
drawGestureText(ctx) {
if (this.activeGestures.length === 0) return;
console.log('Active');
ctx.save();
ctx.fillStyle = 'white';
ctx.strokeStyle = 'black';
ctx.lineWidth = 4;
ctx.font = '32px Arial';
this.activeGestures.forEach((gesture, index) => {
const text = `Detected: ${gesture}`;
ctx.strokeText(text, 10, 30 + (index * 30));
ctx.fillText(text, 10, 30 + (index * 30));
});
ctx.restore();
}
}
export {GestureTracker};