-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminigame_1.js
284 lines (259 loc) · 8.02 KB
/
minigame_1.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
const prediction_URL = "https://southcentralus.api.cognitive.microsoft.com/customvision/v2.0/Prediction/742669c1-82f1-4e67-8811-2ec8cd9554ce/image?iterationId=a8c8b17a-5bcf-4dd4-8d61-c09bb353142b";
let mobilenet;
let classifier;
var CameraOffSet;
var cameraImage;
var frameImage;
let poseNet;
let video;
let noseX = -200;
let noseY = -200;
let effectColor = {};
let isHand;
let inProgress;
let rightWristX = -200;
let rightWristY = -200;
const heightRescale = 2/3;
const heightVideo = 480;
const widthVideo = 640;
let poses;
let counter = 0;
let n;
let m;
let e1;
let e2;
let lastFrameX;
let lastFrameY;
let thisFrameX;
let thisFrameY;
let ClasifiedImage;
function gotResults(err, results) {
if (err) {
console.error(err);
}
if (results && results[0]) {
console.log(results[0].label);
console.log(results[0].confidence);
}
}
function setup() {
video = createCapture(VIDEO);
video.hide();
mobilenet = ml5.featureExtractor('MobileNet', ()=>{
console.log("MobileNet loaded");
ClasifiedImage = new Image();
ClasifiedImage.onload = ()=>{
classifier = mobilenet.classification(video, ()=>{
console.log("Classifier loaded");
let ind = 0;
let ind2 = 0;
for(let i=1;i<30;i++){
let img2 = new Image();
img2.onload = ()=>{
classifier.addImage(img2, 'A', ()=>{ind++;
if(ind == 28){
for(let j=0;j<28;j++){
let img3 = new Image();
img3.src = "ImaginiTraining/LetterC/LetterA ("+i+").png";
img3.onload = ()=>{
ind2++;
if(ind2 == 27){
classifier.train(function(lossValue) {
if (lossValue) {
totalLoss = lossValue;
console.log('Loss: ' + totalLoss);
} else {
console.log('Done Training! Final Loss: ' + totalLoss);
}
});
}
}
}
}});
}
img2.src = "ImaginiTraining/LetterA/LetterA ("+i+").png";
}
});
}
ClasifiedImage.src = "ImaginiTraining/LetterA/LetterA (23).png";
});
CameraOffSet = 100;
frameImage = loadImage("Images/background.jpg");
cameraImage = loadImage("Images/camera.png");
e1 = new Eye(-200, 16, 30);
e2 = new Eye(-200, 16, 30);
inProgress = false;
effectColor.r = 0;
effectColor.g = 0;
effectColor.b = 0;
effectColor.a = 0;
isHand = false;
effectX = -1;
effectY = -1;
createCanvas(innerWidth, innerHeight);
n = innerWidth/widthVideo;
m = innerHeight*heightRescale/heightVideo;
poseNet = ml5.poseNet(video,modelReady);
poseNet.on('pose',(results)=>{
poses = results;
DrawEffect();
});
setInterval(()=>{
if(isHand && !inProgress){
DoPhoto();
}
console.log(isHand);
},600);
}
function CalcDistance(){
return Math.sqrt(
(thisFrameX-lastFrameX)*(thisFrameX-lastFrameX) + (thisFrameY-lastFrameY) * (thisFrameY-lastFrameY)
);
}
function DoPhoto(){
if(CalcDistance() < 10){
console.log("Miscare insuficienta");
lastFrameX = thisFrameX;
lastFrameY = thisFrameY;
return;
}
lastFrameX = thisFrameX;
lastFrameY = thisFrameY;
let centralX = rightWristX - 50;
let centralY = rightWristY - 60;
classifier.classify(gotResults);
inProgress = false;
return;
c.save("Red","png");
// console.log("SD");
c.canvas.toBlob(function(blob) {
var http = new XMLHttpRequest();
http.open('POST', prediction_URL, true);
http.setRequestHeader("Prediction-Key","1c79154da29c4d1cbef321073d000c4c");
http.setRequestHeader("Content-Type","application/octet-stream");
http.onload = function() {
if(http.readyState == 4 && http.status == 200) {
let data = JSON.parse(http.response);
console.clear();
console.log(data.predictions[0].tagName);
console.log(data.predictions[0].probability);
inProgress = false;
switch(data.predictions[0].tagName){
case "GreenColor": effectColor.r = 0;
effectColor.g = 255;
effectColor.b = 0;
effectColor.a = 255;
break;
case "RedColor": effectColor.r = 255;
effectColor.g = 0;
effectColor.b = 0;
effectColor.a = 255;
break;
case "YellowColor": effectColor.r = 240;
effectColor.g = 255;
effectColor.b = 0;
effectColor.a = 255;
break;
}
}
}
inProgress = true;
http.send(blob);
}, "image/jpeg", 1);
}
function draw() {
image(video,0,0, width,height*heightRescale);
let noseX_prime = noseX * n;
let noseY_prime = noseY * m;
if(noseX_prime > 0 && noseY_prime >0 && noseX_prime <= width && noseY_prime < height){
noStroke();
fill(effectColor.r,effectColor.g,effectColor.b,effectColor.a);
ellipse(noseX_prime, noseY_prime, 20);
}
e1.display();
e2.display();
image(frameImage,0,height*heightRescale,width,height*(1-heightRescale));
fill(10, 200, 219);
ellipse(width/2,(height*heightRescale)+height*(1-heightRescale)/2,width/(3/2),(height*(1-heightRescale)/(3/2)));
fill(36, 228, 239);
ellipse(width/2,(height*heightRescale)+height*(1-heightRescale)/2,width/(5/3),(height*(1-heightRescale)/(5/3)));
image(cameraImage,CameraOffSet,height*heightRescale+2/3*CameraOffSet,width-2*CameraOffSet -3,height*(1-heightRescale)-4/3*CameraOffSet -3);
fill(0,0,255);
}
function modelReady(){
console.log("asdd");
//textSize(80);
// fill(255,255,255);
// textAlign(CENTER, CENTER);
// stroke(255);
// text("sdddddd",width/2,height/2);
}
function keyPressed(){
DoPhoto();
}
function DrawEffect(){
noseX = -200;
noseY = -200;
rightWristX = -200;
rightWristY = -200;
try{
let newX = poses[0].pose.keypoints[0].position.x;
let newY = poses[0].pose.keypoints[0].position.y;
noseX = lerp(noseX,newX,1);
noseY = lerp(noseY,newY,1);
rightWristX = poses[0].pose.keypoints[10].position.x;
rightWristY = poses[0].pose.keypoints[10].position.y;
isHand = (poses[0].pose.keypoints[10].score > 0.2)?true:false;
if(!isHand){
thisFrameX = -200;
thisFrameY = -200;
}
else{
thisFrameX = rightWristX;
thisFrameY = rightWristY;
}
e1.update(0.1,poses[0].pose.keypoints[1].position.x*n,poses[0].pose.keypoints[1].position.y*m);
e2.update(-0.1, poses[0].pose.keypoints[2].position.x*n,poses[0].pose.keypoints[2].position.y*m);
}
catch(err){}
}
//Funny Eyes
function Eye(tx, ty, ts) {
this.x = tx;
this.y = ty;
this.size = ts;
this.angle = 0;
this.update = function(mx, i,j) {
this.x = i;
this.y = j;
this.angle += mx;
//this.angle = atan2(my - this.y, mx - this.x);
};
this.display = function() {
push();
translate(this.x, this.y);
fill(255);
ellipse(0, 0, this.size, this.size);
rotate(this.angle);
if(effectColor.a == 0)
fill(153, 204, 0);
else fill(effectColor.r,effectColor.g,effectColor.b);
ellipse(this.size / 4, 0, this.size / 2, this.size / 2);
pop();
};
}
function mouseClicked(){
let startPointX = CameraOffSet/(3/2);
let startPointY = height*heightRescale+7/4*CameraOffSet;
let endPointX = startPointX + width/(6/4);
let endPointY = startPointY - (height*(1-heightRescale)-4/3*CameraOffSet);
if(mouseX > startPointX && mouseX < endPointX){
if(mouseY > endPointY && mouseY < startPointY){
SaveThePhoto();
}
}
}
function SaveThePhoto(){
let savedPhoto = get(0,0,width,height*heightRescale);
savedPhoto.save("SavedPhoto","png");
}