-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetect.py
66 lines (33 loc) · 1.26 KB
/
detect.py
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
import cv2
import numpy as np
import os
import sqlite3
facedetect=cv2.CascadeClassifier("haarcascade_frontalface_default.xml")
cam=cv2.VideoCapture(0)
recognizer=cv2.face.LBPHFaceRecognizer_create()
recognizer.read("recognizer/trainingdata.yml")
def getprofile(id):
conn=sqlite3.connect("sqlite.db")
cursor=conn.execute("SELECT * FROM STUDENTS WHERE id=?",(id,))
profile=None
for row in cursor:
profile=row
conn.close()
return profile
while(True):
ret,img=cam.read();
gray=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
faces=facedetect.detectMultiScale(gray,1.3,5)
for(x,y,w,h) in faces:
cv2.rectangle(img,(x,y),(x+w,y+h),(0,255,0),2)
id,conf=recognizer.predict(gray[y:y+h,x:x+w])
profile=getprofile(id)
print(profile)
if(profile!=None):
cv2.putText(img,"Name:" +str(profile[1]), (x,y+h+20),cv2.FONT_HERSHEY_COMPLEX,1,(0,255,127),2)
cv2.putText(img, "Age:" + str(profile[2]), (x, y + h + 45), cv2.FONT_HERSHEY_COMPLEX, 1, (0, 255, 127), 2)
cv2.imshow("FACE",img);
if(cv2.waitKey(1)==ord('q')): # q - exit
break;
cam.release()
cv2.destroyAllWindows()