-
Notifications
You must be signed in to change notification settings - Fork 22
/
AMS_Run.py
752 lines (627 loc) · 29.7 KB
/
AMS_Run.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
import tkinter as tk
from tkinter import *
import cv2
import csv
import os
import numpy as np
from PIL import Image, ImageTk
import pandas as pd
import datetime
import time
# Window is our Main frame of system
window = tk.Tk()
window.title("FAMS-Face Recognition Based Attendance Management System")
window.geometry('1280x720')
window.configure(background='grey80')
# GUI for manually fill attendance
def manually_fill():
global sb
sb = tk.Tk()
# sb.iconbitmap('AMS.ico')
sb.title("Enter subject name...")
sb.geometry('580x320')
sb.configure(background='grey80')
def err_screen_for_subject():
def ec_delete():
ec.destroy()
global ec
ec = tk.Tk()
ec.geometry('300x100')
# ec.iconbitmap('AMS.ico')
ec.title('Warning!!')
ec.configure(background='snow')
Label(ec, text='Please enter your subject name!!!', fg='red',
bg='white', font=('times', 16, ' bold ')).pack()
Button(ec, text='OK', command=ec_delete, fg="black", bg="lawn green", width=9, height=1, activebackground="Red",
font=('times', 15, ' bold ')).place(x=90, y=50)
def fill_attendance():
ts = time.time()
Date = datetime.datetime.fromtimestamp(ts).strftime('%Y_%m_%d')
timeStamp = datetime.datetime.fromtimestamp(ts).strftime('%H:%M:%S')
Time = datetime.datetime.fromtimestamp(ts).strftime('%H:%M:%S')
Hour, Minute, Second = timeStamp.split(":")
# Creatting csv of attendance
# Create table for Attendance
date_for_DB = datetime.datetime.fromtimestamp(ts).strftime('%Y_%m_%d')
global subb
subb = SUB_ENTRY.get()
DB_table_name = str(subb + "_" + Date + "_Time_" +
Hour + "_" + Minute + "_" + Second)
import pymysql.connections
# Connect to the database
try:
global cursor
connection = pymysql.connect(
host='localhost', user='root', password='', db='manually_fill_attendance')
cursor = connection.cursor()
except Exception as e:
print(e)
sql = "CREATE TABLE " + DB_table_name + """
(ID INT NOT NULL AUTO_INCREMENT,
ENROLLMENT varchar(100) NOT NULL,
NAME VARCHAR(50) NOT NULL,
DATE VARCHAR(20) NOT NULL,
TIME VARCHAR(20) NOT NULL,
PRIMARY KEY (ID)
);
"""
try:
cursor.execute(sql) # for create a table
except Exception as ex:
print(ex) #
if subb == '':
err_screen_for_subject()
else:
sb.destroy()
MFW = tk.Tk()
# MFW.iconbitmap('AMS.ico')
MFW.title("Manually attendance of " + str(subb))
MFW.geometry('880x470')
MFW.configure(background='grey80')
def del_errsc2():
errsc2.destroy()
def err_screen1():
global errsc2
errsc2 = tk.Tk()
errsc2.geometry('330x100')
# errsc2.iconbitmap('AMS.ico')
errsc2.title('Warning!!')
errsc2.configure(background='grey80')
Label(errsc2, text='Please enter Student & Enrollment!!!', fg='black', bg='white',
font=('times', 16, ' bold ')).pack()
Button(errsc2, text='OK', command=del_errsc2, fg="black", bg="lawn green", width=9, height=1,
activebackground="Red", font=('times', 15, ' bold ')).place(x=90, y=50)
def testVal(inStr, acttyp):
if acttyp == '1': # insert
if not inStr.isdigit():
return False
return True
ENR = tk.Label(MFW, text="Enter Enrollment", width=15, height=2, fg="black", bg="grey",
font=('times', 15))
ENR.place(x=30, y=100)
STU_NAME = tk.Label(MFW, text="Enter Student name", width=15, height=2, fg="black", bg="grey",
font=('times', 15))
STU_NAME.place(x=30, y=200)
global ENR_ENTRY
ENR_ENTRY = tk.Entry(MFW, width=20, validate='key',
bg="white", fg="black", font=('times', 23))
ENR_ENTRY['validatecommand'] = (
ENR_ENTRY.register(testVal), '%P', '%d')
ENR_ENTRY.place(x=290, y=105)
def remove_enr():
ENR_ENTRY.delete(first=0, last=22)
STUDENT_ENTRY = tk.Entry(
MFW, width=20, bg="white", fg="black", font=('times', 23))
STUDENT_ENTRY.place(x=290, y=205)
def remove_student():
STUDENT_ENTRY.delete(first=0, last=22)
# get important variable
def enter_data_DB():
ENROLLMENT = ENR_ENTRY.get()
STUDENT = STUDENT_ENTRY.get()
if ENROLLMENT == '':
err_screen1()
elif STUDENT == '':
err_screen1()
else:
time = datetime.datetime.fromtimestamp(
ts).strftime('%H:%M:%S')
Hour, Minute, Second = time.split(":")
Insert_data = "INSERT INTO " + DB_table_name + \
" (ID,ENROLLMENT,NAME,DATE,TIME) VALUES (0, %s, %s, %s,%s)"
VALUES = (str(ENROLLMENT), str(
STUDENT), str(Date), str(time))
try:
cursor.execute(Insert_data, VALUES)
except Exception as e:
print(e)
ENR_ENTRY.delete(first=0, last=22)
STUDENT_ENTRY.delete(first=0, last=22)
def create_csv():
import csv
cursor.execute("select * from " + DB_table_name + ";")
csv_name = 'C:/Users/Pragya singh/PycharmProjects/Attendace_management_system/Attendance/Manually Attendance/'+DB_table_name+'.csv'
with open(csv_name, "w") as csv_file:
csv_writer = csv.writer(csv_file)
csv_writer.writerow(
[i[0] for i in cursor.description]) # write headers
csv_writer.writerows(cursor)
O = "CSV created Successfully"
Notifi.configure(text=O, bg="Green", fg="white",
width=33, font=('times', 19, 'bold'))
Notifi.place(x=180, y=380)
import csv
import tkinter
root = tkinter.Tk()
root.title("Attendance of " + subb)
root.configure(background='grey80')
with open(csv_name, newline="") as file:
reader = csv.reader(file)
r = 0
for col in reader:
c = 0
for row in col:
# i've added some styling
label = tkinter.Label(root, width=18, height=1, fg="black", font=('times', 13, ' bold '),
bg="white", text=row, relief=tkinter.RIDGE)
label.grid(row=r, column=c)
c += 1
r += 1
root.mainloop()
Notifi = tk.Label(MFW, text="CSV created Successfully", bg="Green", fg="white", width=33,
height=2, font=('times', 19, 'bold'))
c1ear_enroll = tk.Button(MFW, text="Clear", command=remove_enr, fg="white", bg="black", width=10,
height=1,
activebackground="white", font=('times', 15, ' bold '))
c1ear_enroll.place(x=690, y=100)
c1ear_student = tk.Button(MFW, text="Clear", command=remove_student, fg="white", bg="black", width=10,
height=1,
activebackground="white", font=('times', 15, ' bold '))
c1ear_student.place(x=690, y=200)
DATA_SUB = tk.Button(MFW, text="Enter Data", command=enter_data_DB, fg="black", bg="SkyBlue1", width=20,
height=2,
activebackground="white", font=('times', 15, ' bold '))
DATA_SUB.place(x=170, y=300)
MAKE_CSV = tk.Button(MFW, text="Convert to CSV", command=create_csv, fg="black", bg="SkyBlue1", width=20,
height=2,
activebackground="white", font=('times', 15, ' bold '))
MAKE_CSV.place(x=570, y=300)
def attf():
import subprocess
subprocess.Popen(
r'explorer /select,"C:\Users\Pragya Singh\PycharmProjects\Attendace_management_system\Attendance\Manually Attendance\-------Check atttendance-------"')
attf = tk.Button(MFW, text="Check Sheets", command=attf, fg="white", bg="black",
width=12, height=1, activebackground="white", font=('times', 14, ' bold '))
attf.place(x=730, y=410)
MFW.mainloop()
SUB = tk.Label(sb, text="Enter Subject : ", width=15, height=2,
fg="black", bg="grey80", font=('times', 15, ' bold '))
SUB.place(x=30, y=100)
global SUB_ENTRY
SUB_ENTRY = tk.Entry(sb, width=20, bg="white",
fg="black", font=('times', 23))
SUB_ENTRY.place(x=250, y=105)
fill_manual_attendance = tk.Button(sb, text="Fill Attendance", command=fill_attendance, fg="black", bg="SkyBlue1", width=20, height=2,
activebackground="white", font=('times', 15, ' bold '))
fill_manual_attendance.place(x=250, y=160)
sb.mainloop()
# For clear textbox
def clear():
txt.delete(first=0, last=22)
def clear1():
txt2.delete(first=0, last=22)
def del_sc1():
sc1.destroy()
def err_screen():
global sc1
sc1 = tk.Tk()
sc1.geometry('300x100')
# sc1.iconbitmap('AMS.ico')
sc1.title('Warning!!')
sc1.configure(background='grey80')
Label(sc1, text='Enrollment & Name required!!!', fg='black',
bg='white', font=('times', 16)).pack()
Button(sc1, text='OK', command=del_sc1, fg="black", bg="lawn green", width=9,
height=1, activebackground="Red", font=('times', 15, ' bold ')).place(x=90, y=50)
# Error screen2
def del_sc2():
sc2.destroy()
def err_screen1():
global sc2
sc2 = tk.Tk()
sc2.geometry('300x100')
# sc2.iconbitmap('AMS.ico')
sc2.title('Warning!!')
sc2.configure(background='grey80')
Label(sc2, text='Please enter your subject name!!!', fg='black',
bg='white', font=('times', 16)).pack()
Button(sc2, text='OK', command=del_sc2, fg="black", bg="lawn green", width=9,
height=1, activebackground="Red", font=('times', 15, ' bold ')).place(x=90, y=50)
# For take images for datasets
def take_img():
l1 = txt.get()
l2 = txt2.get()
if l1 == '':
err_screen()
elif l2 == '':
err_screen()
else:
try:
cam = cv2.VideoCapture(0)
detector = cv2.CascadeClassifier(
'haarcascade_frontalface_default.xml')
Enrollment = txt.get()
Name = txt2.get()
sampleNum = 0
while (True):
ret, img = cam.read()
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
faces = detector.detectMultiScale(gray, 1.3, 5)
for (x, y, w, h) in faces:
cv2.rectangle(img, (x, y), (x + w, y + h), (255, 0, 0), 2)
# incrementing sample number
sampleNum = sampleNum + 1
# saving the captured face in the dataset folder
cv2.imwrite("TrainingImage/ " + Name + "." + Enrollment + '.' + str(sampleNum) + ".jpg",
gray)
print("Images Saved for Enrollment :")
cv2.imshow('Frame', img)
# wait for 100 miliseconds
if cv2.waitKey(1) & 0xFF == ord('q'):
break
#
# # break if the sample number is morethan 100
elif sampleNum > 70:
break
cam.release()
cv2.destroyAllWindows()
ts = time.time()
Date = datetime.datetime.fromtimestamp(ts).strftime('%Y-%m-%d')
Time = datetime.datetime.fromtimestamp(ts).strftime('%H:%M:%S')
row = [Enrollment, Name, Date, Time]
with open('StudentDetails\StudentDetails.csv', 'a+') as csvFile:
writer = csv.writer(csvFile, delimiter=',')
writer.writerow(row)
csvFile.close()
res = "Images Saved for Enrollment : " + Enrollment + " Name : " + Name
Notification.configure(
text=res, bg="SpringGreen3", width=50, font=('times', 18, 'bold'))
Notification.place(x=250, y=400)
except FileExistsError as F:
f = 'Student Data already exists'
Notification.configure(text=f, bg="Red", width=21)
Notification.place(x=450, y=400)
# for choose subject and fill attendance
def subjectchoose():
def Fillattendances():
sub = tx.get()
now = time.time() # For calculate seconds of video
future = now + 20
if time.time() < future:
if sub == '':
err_screen1()
else:
recognizer = cv2.face.LBPHFaceRecognizer_create() # cv2.createLBPHFaceRecognizer()
try:
recognizer.read("TrainingImageLabel\Trainner.yml")
except:
e = 'Model not found,Please train model'
Notifica.configure(
text=e, bg="red", fg="black", width=33, font=('times', 15, 'bold'))
Notifica.place(x=20, y=250)
harcascadePath = "haarcascade_frontalface_default.xml"
faceCascade = cv2.CascadeClassifier(harcascadePath)
df = pd.read_csv("StudentDetails\StudentDetails.csv")
cam = cv2.VideoCapture(0)
font = cv2.FONT_HERSHEY_SIMPLEX
col_names = ['Enrollment', 'Name', 'Date', 'Time']
attendance = pd.DataFrame(columns=col_names)
while True:
ret, im = cam.read()
gray = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)
faces = faceCascade.detectMultiScale(gray, 1.2, 5)
for (x, y, w, h) in faces:
global Id
Id, conf = recognizer.predict(gray[y:y + h, x:x + w])
if (conf < 70):
print(conf)
global Subject
global aa
global date
global timeStamp
Subject = tx.get()
ts = time.time()
date = datetime.datetime.fromtimestamp(
ts).strftime('%Y-%m-%d')
timeStamp = datetime.datetime.fromtimestamp(
ts).strftime('%H:%M:%S')
aa = df.loc[df['Enrollment'] == Id]['Name'].values
global tt
tt = str(Id) + "-" + aa
En = '15624031' + str(Id)
attendance.loc[len(attendance)] = [
Id, aa, date, timeStamp]
cv2.rectangle(
im, (x, y), (x + w, y + h), (0, 260, 0), 7)
cv2.putText(im, str(tt), (x + h, y),
font, 1, (255, 255, 0,), 4)
else:
Id = 'Unknown'
tt = str(Id)
cv2.rectangle(
im, (x, y), (x + w, y + h), (0, 25, 255), 7)
cv2.putText(im, str(tt), (x + h, y),
font, 1, (0, 25, 255), 4)
if time.time() > future:
break
attendance = attendance.drop_duplicates(
['Enrollment'], keep='first')
cv2.imshow('Filling attedance..', im)
key = cv2.waitKey(30) & 0xff
if key == 27:
break
ts = time.time()
date = datetime.datetime.fromtimestamp(ts).strftime('%Y-%m-%d')
timeStamp = datetime.datetime.fromtimestamp(
ts).strftime('%H:%M:%S')
Hour, Minute, Second = timeStamp.split(":")
fileName = "Attendance/" + Subject + "_" + date + \
"_" + Hour + "-" + Minute + "-" + Second + ".csv"
attendance = attendance.drop_duplicates(
['Enrollment'], keep='first')
print(attendance)
attendance.to_csv(fileName, index=False)
# Create table for Attendance
date_for_DB = datetime.datetime.fromtimestamp(
ts).strftime('%Y_%m_%d')
DB_Table_name = str(
Subject + "_" + date_for_DB + "_Time_" + Hour + "_" + Minute + "_" + Second)
import pymysql.connections
# Connect to the database
try:
global cursor
connection = pymysql.connect(
host='localhost', user='root', password='', db='Face_reco_fill')
cursor = connection.cursor()
except Exception as e:
print(e)
sql = "CREATE TABLE " + DB_Table_name + """
(ID INT NOT NULL AUTO_INCREMENT,
ENROLLMENT varchar(100) NOT NULL,
NAME VARCHAR(50) NOT NULL,
DATE VARCHAR(20) NOT NULL,
TIME VARCHAR(20) NOT NULL,
PRIMARY KEY (ID)
);
"""
# Now enter attendance in Database
insert_data = "INSERT INTO " + DB_Table_name + \
" (ID,ENROLLMENT,NAME,DATE,TIME) VALUES (0, %s, %s, %s,%s)"
VALUES = (str(Id), str(aa), str(date), str(timeStamp))
try:
cursor.execute(sql) # for create a table
# For insert data into table
cursor.execute(insert_data, VALUES)
except Exception as ex:
print(ex) #
M = 'Attendance filled Successfully'
Notifica.configure(text=M, bg="Green", fg="white",
width=33, font=('times', 15, 'bold'))
Notifica.place(x=20, y=250)
cam.release()
cv2.destroyAllWindows()
import csv
import tkinter
root = tkinter.Tk()
root.title("Attendance of " + Subject)
root.configure(background='grey80')
cs = 'C:/Users/Pragya Singh/PycharmProjects/Attendace_management_system/' + fileName
with open(cs, newline="") as file:
reader = csv.reader(file)
r = 0
for col in reader:
c = 0
for row in col:
# i've added some styling
label = tkinter.Label(root, width=10, height=1, fg="black", font=('times', 15, ' bold '),
bg="white", text=row, relief=tkinter.RIDGE)
label.grid(row=r, column=c)
c += 1
r += 1
root.mainloop()
print(attendance)
# windo is frame for subject chooser
windo = tk.Tk()
# windo.iconbitmap('AMS.ico')
windo.title("Enter subject name...")
windo.geometry('580x320')
windo.configure(background='grey80')
Notifica = tk.Label(windo, text="Attendance filled Successfully", bg="Green", fg="white", width=33,
height=2, font=('times', 15, 'bold'))
def Attf():
import subprocess
subprocess.Popen(
r'explorer /select,"C:\Users\Pragya Singh\PycharmProjects\Attendace_management_system\Attendance\-------Check atttendance-------"')
attf = tk.Button(windo, text="Check Sheets", command=Attf, fg="white", bg="black",
width=12, height=1, activebackground="white", font=('times', 14, ' bold '))
attf.place(x=430, y=255)
sub = tk.Label(windo, text="Enter Subject : ", width=15, height=2,
fg="black", bg="grey", font=('times', 15, ' bold '))
sub.place(x=30, y=100)
tx = tk.Entry(windo, width=20, bg="white",
fg="black", font=('times', 23))
tx.place(x=250, y=105)
fill_a = tk.Button(windo, text="Fill Attendance", fg="white", command=Fillattendances, bg="SkyBlue1", width=20, height=2,
activebackground="white", font=('times', 15, ' bold '))
fill_a.place(x=250, y=160)
windo.mainloop()
def admin_panel():
win = tk.Tk()
# win.iconbitmap('AMS.ico')
win.title("LogIn")
win.geometry('880x420')
win.configure(background='grey80')
def log_in():
username = un_entr.get()
password = pw_entr.get()
if username == 'pragya':
if password == 'pragya123':
win.destroy()
import csv
import tkinter
root = tkinter.Tk()
root.title("Student Details")
root.configure(background='grey80')
cs = 'C:/Users/Pragya Singh/PycharmProjects/Attendace_management_system/StudentDetails/StudentDetails.csv'
with open(cs, newline="") as file:
reader = csv.reader(file)
r = 0
for col in reader:
c = 0
for row in col:
# i've added some styling
label = tkinter.Label(root, width=10, height=1, fg="black", font=('times', 15, ' bold '),
bg="white", text=row, relief=tkinter.RIDGE)
label.grid(row=r, column=c)
c += 1
r += 1
root.mainloop()
else:
valid = 'Incorrect ID or Password'
Nt.configure(text=valid, bg="red", fg="white",
width=38, font=('times', 19, 'bold'))
Nt.place(x=120, y=350)
else:
valid = 'Incorrect ID or Password'
Nt.configure(text=valid, bg="red", fg="white",
width=38, font=('times', 19, 'bold'))
Nt.place(x=120, y=350)
Nt = tk.Label(win, text="Attendance filled Successfully", bg="Green", fg="white", width=40,
height=2, font=('times', 19, 'bold'))
# Nt.place(x=120, y=350)
un = tk.Label(win, text="Enter username : ", width=15, height=2, fg="black", bg="grey",
font=('times', 15, ' bold '))
un.place(x=30, y=50)
pw = tk.Label(win, text="Enter password : ", width=15, height=2, fg="black", bg="grey",
font=('times', 15, ' bold '))
pw.place(x=30, y=150)
def c00():
un_entr.delete(first=0, last=22)
un_entr = tk.Entry(win, width=20, bg="white", fg="black",
font=('times', 23))
un_entr.place(x=290, y=55)
def c11():
pw_entr.delete(first=0, last=22)
pw_entr = tk.Entry(win, width=20, show="*", bg="white",
fg="black", font=('times', 23))
pw_entr.place(x=290, y=155)
c0 = tk.Button(win, text="Clear", command=c00, fg="white", bg="black", width=10, height=1,
activebackground="white", font=('times', 15, ' bold '))
c0.place(x=690, y=55)
c1 = tk.Button(win, text="Clear", command=c11, fg="white", bg="black", width=10, height=1,
activebackground="white", font=('times', 15, ' bold '))
c1.place(x=690, y=155)
Login = tk.Button(win, text="LogIn", fg="black", bg="SkyBlue1", width=20,
height=2,
activebackground="Red", command=log_in, font=('times', 15, ' bold '))
Login.place(x=290, y=250)
win.mainloop()
# For train the model
def trainimg():
recognizer = cv2.face.LBPHFaceRecognizer_create()
global detector
detector = cv2.CascadeClassifier("haarcascade_frontalface_default.xml")
try:
global faces, Id
faces, Id = getImagesAndLabels("TrainingImage")
except Exception as e:
l = 'please make "TrainingImage" folder & put Images'
Notification.configure(text=l, bg="SpringGreen3",
width=50, font=('times', 18, 'bold'))
Notification.place(x=350, y=400)
recognizer.train(faces, np.array(Id))
try:
recognizer.save("TrainingImageLabel\Trainner.yml")
except Exception as e:
q = 'Please make "TrainingImageLabel" folder'
Notification.configure(text=q, bg="SpringGreen3",
width=50, font=('times', 18, 'bold'))
Notification.place(x=350, y=400)
res = "Model Trained" # +",".join(str(f) for f in Id)
Notification.configure(text=res, bg="olive drab",
width=50, font=('times', 18, 'bold'))
Notification.place(x=250, y=400)
def getImagesAndLabels(path):
imagePaths = [os.path.join(path, f) for f in os.listdir(path)]
# create empth face list
faceSamples = []
# create empty ID list
Ids = []
# now looping through all the image paths and loading the Ids and the images
for imagePath in imagePaths:
# loading the image and converting it to gray scale
pilImage = Image.open(imagePath).convert('L')
# Now we are converting the PIL image into numpy array
imageNp = np.array(pilImage, 'uint8')
# getting the Id from the image
Id = int(os.path.split(imagePath)[-1].split(".")[1])
# extract the face from the training image sample
faces = detector.detectMultiScale(imageNp)
# If a face is there then append that in the list as well as Id of it
for (x, y, w, h) in faces:
faceSamples.append(imageNp[y:y + h, x:x + w])
Ids.append(Id)
return faceSamples, Ids
window.grid_rowconfigure(0, weight=1)
window.grid_columnconfigure(0, weight=1)
# window.iconbitmap('AMS.ico')
def on_closing():
from tkinter import messagebox
if messagebox.askokcancel("Quit", "Do you want to quit?"):
window.destroy()
window.protocol("WM_DELETE_WINDOW", on_closing)
message = tk.Label(window, text="Face-Recognition-Based-Attendance-Management-System", bg="black", fg="white", width=50,
height=3, font=('times', 30, ' bold '))
message.place(x=80, y=20)
Notification = tk.Label(window, text="All things good", bg="Green", fg="white", width=15,
height=3, font=('times', 17))
lbl = tk.Label(window, text="Enter Enrollment : ", width=20, height=2,
fg="black", bg="grey", font=('times', 15, 'bold'))
lbl.place(x=200, y=200)
def testVal(inStr, acttyp):
if acttyp == '1': # insert
if not inStr.isdigit():
return False
return True
txt = tk.Entry(window, validate="key", width=20, bg="white",
fg="black", font=('times', 25))
txt['validatecommand'] = (txt.register(testVal), '%P', '%d')
txt.place(x=550, y=210)
lbl2 = tk.Label(window, text="Enter Name : ", width=20, fg="black",
bg="grey", height=2, font=('times', 15, ' bold '))
lbl2.place(x=200, y=300)
txt2 = tk.Entry(window, width=20, bg="white",
fg="black", font=('times', 25))
txt2.place(x=550, y=310)
clearButton = tk.Button(window, text="Clear", command=clear, fg="white", bg="black",
width=10, height=1, activebackground="white", font=('times', 15, ' bold '))
clearButton.place(x=950, y=210)
clearButton1 = tk.Button(window, text="Clear", command=clear1, fg="white", bg="black",
width=10, height=1, activebackground="white", font=('times', 15, ' bold '))
clearButton1.place(x=950, y=310)
AP = tk.Button(window, text="Check Registered students", command=admin_panel, fg="black",
bg="SkyBlue1", width=19, height=1, activebackground="white", font=('times', 15, ' bold '))
AP.place(x=990, y=410)
takeImg = tk.Button(window, text="Take Images", command=take_img, fg="black", bg="SkyBlue1",
width=20, height=3, activebackground="white", font=('times', 15, ' bold '))
takeImg.place(x=90, y=500)
trainImg = tk.Button(window, text="Train Images", fg="black", command=trainimg, bg="SkyBlue1",
width=20, height=3, activebackground="white", font=('times', 15, ' bold '))
trainImg.place(x=390, y=500)
FA = tk.Button(window, text="Automatic Attendance", fg="black", command=subjectchoose,
bg="SkyBlue1", width=20, height=3, activebackground="white", font=('times', 15, ' bold '))
FA.place(x=690, y=500)
quitWindow = tk.Button(window, text="Manually Fill Attendance", command=manually_fill, fg="black",
bg="SkyBlue1", width=20, height=3, activebackground="white", font=('times', 15, ' bold '))
quitWindow.place(x=990, y=500)
window.mainloop()