-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupportFunctions.js
164 lines (148 loc) · 4.06 KB
/
supportFunctions.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
//Identificador de sinais de libras em vídeo
//Usando ml5 (neuralNetwork e Handpose), p5.js e
//Isabela Zamith, 2021
/*
FUNCOES DE APOIO
*/
/* VARIÁVEIS GLOBAIS */
let sign;
let hand;
let modelStatus;
// espelhar o vídeo (flippedVideo)
function flipVideo(flippedVideo) {
//move image by the width of image to the left
translate(flippedVideo.width, 0);
//then scale it by -1 in the x-axis
//to flip the image
scale(-1, 1);
//draw video capture feed as image inside p5 canvas
image(flippedVideo, 0, 0);
return image(flippedVideo, 0, 0);
};
// handpose carregado
function handReady() {
console.log("Handpose Carregado!");
};
// input do usuário para começar a coleta e salvar o json com os dados
/*
function keyPressed() {
// salvar dados de treinamento coletados
if (key == "s") {
neuralNet.saveData();
console.log('Modelo salvo');
}
// começar o treinamento com espaço
else if (key == " ") {
// status do treinamento
training = "training";
console.log('training');
// pegar o nome da label de um prompt
var i = prompt('Categoria');
label = i
// debug console.log(label);
// fica 5 seg coletando
setTimeout(function() {
training = "not training"
console.log('not training')
}, 10000
);
};
};
*/
// pegar os dados dos pontos do vídeo
function gatherData() {
let inputs = [];
for (let i = 0; i < predictions.length; i += 1) {
// armazena o conjunto de landmarks de cada sinal (i)
const prediction = predictions[i];
// para cada conjunto, identificar o conjunto de coordenadas
// x, y z
for (let j = 0; j < prediction.landmarks.length; j += 1) {
const keypoint = prediction.landmarks[j];
let x= keypoint[0];
let y= keypoint[1];
let z= keypoint[2];
inputs.push(x);
inputs.push(y);
inputs.push(z);
//debug console.log(x,y,z)
};
};
//colocar a label que foi digitada pelo usuario
let target = [label];
neuralNet.addData(inputs, target);
};
// quando os dados foram carregados
function dataReady() {
// números grandes, precisa normalizar
neuralNet.normalizeData();
// treinar a neuralNet com os dados carregados
neuralNet.train({epochs:50}, loaded);
};
// quando o modelo foi treinado, etapa final
function modelIsReady() {
modelStatus = "ready"
console.log('Classificação de libras carregada!');
console.log("Modelo pronto!")
};
function gotResult(error, results) {
// console.log(results);
// console.log(results[0].confidence);
// if (typeof results !== 'undefined') {
if (results) {
// apenas se o resultado tiver a confidence quase 1
// escrever na tela
if (results[0].confidence >= 0.9) {
signLabel=results[0].label;
// o texto depois some
setTimeout(function() {
signLabel = ""
},1000);
}
setTimeout(identifySigns,1000);
//console.log('gotresults')
// console.log(results);
}
};
// identificar a posicao das mãos
function identifySigns(){
// caso não apareça nenhuma mão
if (predictions.length == 0) {
// aguarde e tente dnv
setTimeout(identifySigns,1000);
};
// Só depois que o texto sumir
if (signLabel == "") {
let inputs = []
for (let i = 0; i < predictions.length; i += 1) {
const prediction = predictions[i];
for (let j = 0; j < prediction.landmarks.length; j += 1) {
const keypoint = prediction.landmarks[j];
let x= keypoint[0];
let y= keypoint[1];
let z= keypoint[2];
inputs.push(x);
inputs.push(y);
inputs.push(z)
//console.log('ok')
}
}
// ml5 neuralnet classifica os pontos encontrados
neuralNet.classify(inputs,gotResult)
}
};
function loaded() {
console.log('Modelo Carregado!');
neuralNet.save();
};
var t = 0
function toggleSigns() {
if (t==0) {
document.getElementById('signs').style.display="block"
t=1
}
else if (t==1) {
document.getElementById('signs').style.display="none"
t=0
}
}