-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncodeGenerator.py
More file actions
38 lines (32 loc) · 956 Bytes
/
EncodeGenerator.py
File metadata and controls
38 lines (32 loc) · 956 Bytes
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
from uu import encode
import cv2
import os
import face_recognition
import pickle
#import Student Images
folderPath = 'images'
pathList = os.listdir(folderPath)
print(pathList)
imgList = []
studentIds = []
for path in pathList:
imgList.append(cv2.imread(os.path.join(folderPath,path)))
studentIds.append(os.path.splitext(path)[0])
# print(path)
# print(os.path.splitext(path)[0])
print(studentIds)
def findEncodings(imagesList):
encodeList = []
for img in imagesList:
img = cv2.cvtColor(img,cv2.COLOR_BGR2RGB)
encode = face_recognition.face_encodings(img)[0]
encodeList.append(encode)
return encodeList
print("Encoding Started ....")
encodeListKnown = findEncodings(imgList)
encodeListKnownWithIds = [encodeListKnown,studentIds]
print("Encoding Complete")
file = open("EncodeFile.p",'wb')
pickle.dump(encodeListKnownWithIds,file)
file.close()
print("File Saved")