-
Notifications
You must be signed in to change notification settings - Fork 0
/
EncodeGenerator.py
52 lines (44 loc) · 1.31 KB
/
EncodeGenerator.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
import cv2
import face_recognition
import pickle
import os
import firebase_admin
from firebase_admin import credentials
from firebase_admin import db
from firebase_admin import storage
cred = credentials.Certificate("serviceAccountKey.json") #path of the credential file
firebase_admin.initialize_app(cred,{
'databaseURL':"#"
})
#importing the 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])
fileName = f'{folderPath}/{path}'
bucket = storage.bucket()
blob = bucket.blob(fileName)
blob.upload_from_filename(fileName)
#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)
#print(encodeListKnown)
encodeListKnownWithIds = [encodeListKnown, studentIds]
print("Encoding Complete")
file = open("EncodeFile.p",'wb')
pickle.dump(encodeListKnownWithIds, file)
file.close()
print("File Saved")