forked from roshan9419/PersonalAssistantChatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFACE_UNLOCKER.py
90 lines (70 loc) · 2.16 KB
/
FACE_UNLOCKER.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import cv2
import os
from os.path import isfile, join
face_classifier = cv2.CascadeClassifier('Cascade/haarcascade_frontalface_default.xml')
def face_detector(img, size=0.5):
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
faces = face_classifier.detectMultiScale(gray, 1.3, 5)
if faces is ():
return img,[]
for (x,y,w,h) in faces:
cv2.rectangle(img, (x,y), (x+w,y+h), (0,255,255), 2)
#region of interest
roi = img[y:y+h, x:x+w]
roi = cv2.resize(roi, (200,200))
return img,roi
def startDetecting():
try:
model = cv2.face.LBPHFaceRecognizer_create()
model.read('userData/trainer.yml')
except:
print('Please Add your face')
return None
flag = False
cap = cv2.VideoCapture(0)
while True:
ret, frame = cap.read()
image, face = face_detector(frame)
try:
face = cv2.cvtColor(face, cv2.COLOR_BGR2GRAY)
result = model.predict(face)
if result[1] < 500:
confindence = int((1-(result[1])/300) * 100) #percentange
display_string = str(confindence) + '%'
cv2.putText(image, display_string, (100, 120), cv2.FONT_HERSHEY_COMPLEX, 1, (250, 120, 255), 2)
if confindence > 80:
cv2.putText(image, "Unlocked", (250, 450), cv2.FONT_HERSHEY_COMPLEX, 1, (0, 255, 0), 2)
cv2.imshow('Face Cropper', image)
flag = True
break
else:
cv2.putText(image, "Locked", (250, 450), cv2.FONT_HERSHEY_COMPLEX, 1, (0, 0, 255), 2)
cv2.imshow('Face Cropper', image)
except Exception as e:
cv2.putText(image, "Face Not Found", (250, 450), cv2.FONT_HERSHEY_COMPLEX, 1, (255, 0, 0), 2)
cv2.imshow('Face Cropper', image)
pass
if cv2.waitKey(1) == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
return flag
imageName = ''
def clickPhoto():
global imageName
if os.path.exists('Camera')==False:
os.mkdir('Camera')
from time import sleep
import playsound
from datetime import datetime
cam = cv2.VideoCapture(0)
_, frame = cam.read()
playsound.playsound('extrafiles/audios/photoclick.mp3')
imageName = 'Camera/Camera_'+str(datetime.now())[:19].replace(':', '_')+'.png'
cv2.imwrite(imageName, frame)
cam.release()
cv2.destroyAllWindows()
def viewPhoto():
from PIL import Image
img = Image.open(imageName)
img.show()