-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathidentificar.html
166 lines (161 loc) · 7.19 KB
/
identificar.html
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
<html oncontextmenu='return false' onkeydown='return false'>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Identificar</title>
<script async src='opencv.js' onload='openCvReady();'></script>
<script src='utils.js'></script>
<style> .labele { color: white; padding: 8px; font-family: Arial; background-color: #ff9800; } .labelt { color: white; padding: 8px; font-family: Arial; background-color: #04aa6d; } .labeli { color: white; padding: 8px; font-family: Arial; background-color: #f44336; } @media only screen and (max-width: 992px) { video.camara { height:640px; width:480px; display: block; margin-left: auto; margin-right: auto; } } @media only screen and (min-width: 993px) { video.camara { height:480px; width:640px; display: block; margin-left: auto; margin-right: auto;} } </style>
</head>
<body bgcolor='#000' onload="setTimeout('temporizador()',1000)">
<br>
<center>
<span id='Tiempo' class='labelt'>0</span>
<span id='Estado' class='labele'>Iniciando...</span>
<span id='Identificador' class='labeli'>Desconocido</span>
</center>
<br>
<br>
<center>
<! canvas id='canvas_output' /><! /canvas>
<video id='cam_input' height='480' width='640' class='camara'></video>
</center>
<script>
/* variables globales para el funcionamiento */
let stop = 0;
let tiempo = 0;
/* aperturamos webcam con opencv */
function openCvReady() {
cv['onRuntimeInitialized'] = () => {
let video = document.getElementById('cam_input');
/*video.style.display='none';*/
navigator.mediaDevices.getUserMedia({ video: true, audio: false }).then( function (stream) {
video.srcObject = stream; video.play();
}).catch(function (err) {
console.log('Error: ' + err);
});
let src = new cv.Mat(video.height, video.width, cv.CV_8UC4);
let gray = new cv.Mat();
let cap = new cv.VideoCapture(cam_input);
let faces = new cv.RectVector();
let faceClassifier = new cv.CascadeClassifier();
let utils = new Utils('errorMessage');
let faceCascade = 'haarcascade_frontalface_default.xml';
utils.createFileFromUrl(faceCascade, faceCascade, () => { faceClassifier.load(faceCascade); });
const FPS = 40;
function processVideo() {
let begin = Date.now();
cap.read(src);
cv.cvtColor(src, gray, cv.COLOR_RGBA2GRAY, 0);
let detectado=0;
try {
faceClassifier.detectMultiScale(gray, faces, 1.1, 3, 0);
for (let i = 0; i < faces.size(); ++i) {
let face = faces.get(i);
let point1 = new cv.Point(face.x, face.y);
let point2 = new cv.Point(face.x + face.width, face.y + face.height);
cv.rectangle(src, point1, point2, [0, 255, 0, 255]);
detectado = 1;
}
} catch (err) {
console.log(err);
}
if(detectado==1){
document.getElementById('Estado').innerHTML = 'Rostro detectado';
document.getElementById('Estado').style.backgroundColor='#04aa6d';
} else {
document.getElementById('Estado').innerHTML = 'Rostro no detectado';
document.getElementById('Estado').style.backgroundColor='#f44336';
}
/*cv.imshow('canvas_output', src);*/
let delay = 1000 / FPS - (Date.now() - begin);
setTimeout(processVideo, delay);
}
setTimeout(processVideo, 0);
}
}
/* temporizador que usa la variable global tiempo para contar los segundos */
function temporizador() {
if(stop==0){
if(document.getElementById('Estado').textContent=='Rostro detectado'){
tiempo = tiempo + 1;
document.getElementById('Tiempo').innerHTML = tiempo;
} else{
tiempo = 0;
document.getElementById('Tiempo').innerHTML = tiempo;
}
/*cuando hayan pasado 3 segundos de la deteccion de un rostro ejecutar()*/
if(tiempo == 3){
stop = 1;
tiempo = 0;
document.getElementById('Tiempo').innerHTML = tiempo;
document.getElementById('Identificador').innerHTML = 'Enviando al servidor';
document.getElementById('Identificador').style.backgroundColor='#ff9800';
ejecutar();
}
}
setTimeout('temporizador()',1000);
}
/* generamos el archivo de imagen sin el recuadro */
function ejecutar(){
let imageCanvas = document.createElement('canvas');
let imageCtx = imageCanvas.getContext('2d');
let v = document.getElementById('cam_input');
imageCanvas.width = v.videoWidth;
imageCanvas.height = v.videoHeight;
imageCtx.drawImage(v, 0, 0, v.videoWidth, v.videoHeight);
imageCanvas.toBlob(postFile, 'image/jpeg');
}
/* enviamos el 'file' a la url 'identificar' por metodo 'POST' */
function postFile(file) {
let formdata = new FormData();
formdata.append('image', file);
let xhr = new XMLHttpRequest();
xhr.open('POST', 'identificar', true);
xhr.onload = function () {
/*si se hizo un envio exitoso, sin error; enviamos la respuerta indentificacion()*/
if (this.status === 200){
if (this.response != 'NO IDENTIFICADO'){
identificacion(this.response);
} else {
document.getElementById('Identificador').innerHTML = 'NO IDENTIFICADO';
document.getElementById('Identificador').style.backgroundColor='#f44336';
stop = 0;
}
} else {
document.getElementById('Identificador').innerHTML = 'NO IDENTIFICADO';
document.getElementById('Identificador').style.backgroundColor='#f44336';
stop = 0;
}
};
xhr.onerror = function () {
document.getElementById('Identificador').innerHTML = 'Error de comunicacion';
alert('Error de comunicacion con el servidor');
document.getElementById('Identificador').innerHTML = 'NO IDENTIFICADO';
document.getElementById('Identificador').style.backgroundColor='#f44336';
stop = 0;
};
xhr.onabort = function () {
document.getElementById('Identificador').innerHTML = 'Peticion abortada';
alert('Peticion de reconocimiento abortada');
document.getElementById('Identificador').innerHTML = 'NO IDENTIFICADO';
document.getElementById('Identificador').style.backgroundColor='#f44336';
stop = 0;
};
xhr.send(formdata);
}
/* mostramos el Identificador de la persona por 5 segundos */
async function identificacion(res) {
document.getElementById('Identificador').innerHTML = res;
document.getElementById('Identificador').style.backgroundColor='#00008b';
await sleep(5 * 1000);
document.getElementById('Identificador').innerHTML = 'Desconocido';
document.getElementById('Identificador').style.backgroundColor='#f44336';
stop = 0;
}
/* funcion que simula sleep */
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
</script>
</body>
</html>