-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain.py
More file actions
70 lines (55 loc) · 2.35 KB
/
Copy pathtrain.py
File metadata and controls
70 lines (55 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from tkinter import*
from tkinter import ttk
from PIL import Image,ImageTk
from tkinter import messagebox
import mysql.connector
import cv2
import os
import numpy as np
class Train:
def __init__(self,root):
self.root=root
self.root.geometry("1366x768+0+0")
self.root.title("Face Recognition System")
#==========title lable===========
title_lbl=Label(self.root,text="TRAIN DATA SET",font=("times new roman",32,"bold"),bg="white",fg="red")
title_lbl.place(x=0,y=0,width=1360,height=35)
#==========top image=============
img_top = Image.open(r"img\facialrecognition.png")
img_top = img_top.resize((1360,300), Image.ANTIALIAS)
self.photoimg_top = ImageTk.PhotoImage(img_top)
f_lbl = Label(self.root, image=self.photoimg_top)
f_lbl.place(x=0, y=40, width=1360, height=300)
#===========train button=========
b1_1 = Button(self.root,text="TRAIN DATA",command=self.train_classifier,cursor="hand2",font=("times new roman",30,"bold"),bg="red",fg="white")
b1_1.place(x=0, y=340, width=1360, height=35)
#===========bottom image=========
img_bottom = Image.open(r"img\photos.jpg")
img_bottom = img_bottom.resize((1360,300), Image.ANTIALIAS)
self.photoimg_bottom = ImageTk.PhotoImage(img_bottom)
f_lbl = Label(self.root, image=self.photoimg_bottom)
f_lbl.place(x=0, y=400, width=1360, height=300)
def train_classifier(self):
data_dir=("data")
path=[os.path.join(data_dir,file) for file in os.listdir(data_dir)]
faces=[]
ids=[]
for image in path:
img=Image.open(image).convert('L') #Gray scale image
imageNp=np.array(img,'uint8') #in array uint8 is a data type in array
id=int(os.path.split(image)[1].split('.')[1])
faces.append(imageNp)
ids.append(id)
cv2.imshow("Training",imageNp)
cv2.waitKey(1)==13
ids=np.array(ids)
#=======Train the classifier and save=========
recognizer = cv2.face.LBPHFaceRecognizer_create()
recognizer.train(faces,ids)
recognizer.write("classifier.xml")
cv2.destroyAllWindows()
messagebox.showinfo("Result","face training completed",parent=self.root)
if __name__ == "__main__":
root=Tk()
obj=Train(root)
root.mainloop()