-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn_faces.py
35 lines (31 loc) · 1.23 KB
/
learn_faces.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
import os
import pickle
import cv2
from imutils import paths
import face_recognition
# get paths of each file in folder named images
# that contains my data(folders of various persons)
image_paths = list(paths.list_images('images'))
known_encodings = []
known_names = []
# loop over the image paths
for (i, image_path) in enumerate(image_paths):
# extract person name from the image path
name = image_path.split(os.path.sep)[-2]
# load the input image and convert it from BGR (OpenCV ordering) to RGB (dlib ordering)
image = cv2.imread(image_path)
rgb = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
# use Face Recognition to locate faces
boxes = face_recognition.face_locations(image, model='hog')
# compute the facial embedding for the face
encodings = face_recognition.face_encodings(rgb, boxes)
# loop over the encodings
for encoding in encodings:
known_encodings.append(encoding)
known_names.append(name)
# save emcodings along with their names in dictionary data
# use pickle to save data into a file for later use
data = {'encodings': known_encodings, 'names': known_names}
with open('face_encodings', 'wb') as f:
f.write(pickle.dumps(data))
f.close()