-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspecify.py
More file actions
52 lines (38 loc) · 1.35 KB
/
specify.py
File metadata and controls
52 lines (38 loc) · 1.35 KB
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
import cv2
import numpy as np
recognizer = cv2.face.LBPHFaceRecognizer_create()
recognizer.read('trainer/trainer.yml')
cascadePath = 'haarcascade_frontalface_default.xml'
faceCascade = cv2.CascadeClassifier(cascadePath)
font = cv2.FONT_HERSHEY_SIMPLEX
id = 0
names = ['None','minsu','junsun','kyongjin']
cam = cv2.VideoCapture('sample/kj.mp4')
cam.set(cv2.CAP_PROP_FRAME_WIDTH, 1980)
cam.set(cv2.CAP_PROP_FRAME_HEIGHT, 720)
minW = 0.1 * cam.get(cv2.CAP_PROP_FRAME_WIDTH)
minH = 0.1 * cam.get(cv2.CAP_PROP_FRAME_HEIGHT)
while True:
ret, img = cam.read()
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
faces = faceCascade.detectMultiScale(
gray,
scaleFactor=1.2,
minNeighbors=6,
minSize=(int(minW), int(minH))
)
for(x,y,w,h) in faces:
cv2.rectangle(img, (x,y), (x+w,y+h), (0,255,0),2)
id, confidence = recognizer.predict(gray[y:y+h, x:x+w])
if confidence < 55 :
id = names[id]
else:
id = "unknown"
confidence = " {0}%".format(round(100-confidence))
cv2.putText(img,str(id), (x+5,y-5),font,1,(255,255,255),2)
cv2.putText(img,str(confidence), (x+5,y+h-5),font,1,(255,255,0),1)
cv2.imshow('camera',img)
if cv2.waitKey(1) > 0 : break
print("\n [INFO] Exiting Program and cleanup stuff")
cam.release()
cv2.destroyAllWindows()