-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrainner.py
More file actions
38 lines (27 loc) · 1.04 KB
/
Copy pathtrainner.py
File metadata and controls
38 lines (27 loc) · 1.04 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
import os
import cv2
import numpy as np
from PIL import Image
recognizer = cv2.face.LBPHFaceRecognizer_create()
face_cascade = cv2.CascadeClassifier('D:/python-opencv/NORMAL/haarcascade_frontalface_default.xml')
path = 'D:/python-opencv/NORMAL/data'
def getImagesWithID(path):
imagePath = [os.path.join(path,f) for f in os.listdir(path)]
faceSamples = []
ids = []
for imagePath in imagePath:
PIL_img = Image.open(imagePath).convert('L')
img_numpy = np.array(PIL_img)
Id = int(os.path.split(imagePath)[-1].split(".")[1])
faces = face_cascade.detectMultiScale(img_numpy)
for (x,y,w,h) in faces:
faceSamples.append(img_numpy[y:y+h,x:x+w])
ids.append(Id)
print(Id)
cv2.imshow('train',img_numpy)
cv2.waitKey(10)
return faceSamples,ids
faces,ids = getImagesWithID(path)
recognizer.train(faces, np.array(ids))
recognizer.save('D:/python-opencv/NORMAL/recognizer/traindataData.yml')
cv2.destroyAllWindows()