-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
86 lines (67 loc) · 3.44 KB
/
main.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
from tkinter import *
from Functions import *
from attendanceWebcam import *
from attendanceVideo import *
from attendanceImage import *
from tkinter import filedialog
import tkinter.messagebox
from PIL import ImageTk, Image
def clickCapture():
ans = tkinter.messagebox.askyesno("Confirm", "Do you want to capture image?")
if ans:
name = enterName.get()
captureImage(name)
def startProgramWebcam():
tkinter.messagebox.showinfo("Info", "Please wait a while, Processing your Database Images...")
startWebcam()
def startProgram():
rootStart = Tk()
rootStart.title("Choose Option")
rootStart.minsize(500, 80)
rootStart.maxsize(500, 80)
rootStart.configure(bg="white")
rootStart.geometry('%dx%d+%d+%d' % (500, 80, 300, 600))
Button(rootStart, text="Video", fg="#CDCDCD", bg="#80182A", width=25, height=2,command=callStartVideo).pack(side='left', padx=(40, 0))
Button(rootStart, text="Image", fg="#CDCDCD", bg="#80182A", width=25, height=2,command=callStartImage).pack(side='right', padx=(0, 40))
def callStartImage():
filename = filedialog.askdirectory(initialdir=os.path.dirname(__file__), title="Select Folder")
if len(filename) > 0:
startImage(filename)
else:
tkinter.messagebox.showinfo("Info", "Please select Image Folder")
def callStartVideo():
filename = filedialog.askopenfilename(initialdir=os.path.dirname(__file__), title="Select Folder")
if len(filename) > 0:
startVideo(filename)
else:
tkinter.messagebox.showinfo("Info", "Please select Video")
def openExcelOption():
rootExcel = Tk()
rootExcel.title("Choose Option")
rootExcel.minsize(380, 140)
rootExcel.maxsize(380, 140)
rootExcel.configure(bg="#888888")
rootExcel.geometry('%dx%d+%d+%d' % (380, 140, 300, 600))
Button(rootExcel, text="Attendance Live Webcam", fg="#CDCDCD", bg="#80182A", width=25, height=2, command=openExcelWebcam).pack(pady=(5, 2))
Button(rootExcel, text="Attendance Image", fg="#CDCDCD", bg="#80182A", width=25, height=2, command=openExcelImage).pack(pady=(0, 2))
Button(rootExcel, text="Attendance Video", fg="#CDCDCD", bg="#80182A", width=25, height=2, command=openExcelVideo).pack(pady=(0, 5))
root = Tk()
root.title('Facial Recognition Attendance Program (Alpha-Version V1.0)')
root.minsize(1080 ,1920)
root.maxsize(1440 ,1920)
root.configure(background="lightblue")
heading = Label(root, text="Welcome to Automated Attendance System", fg='red',bg='lightblue')
heading.configure(font=("Jokerman", 35),)
heading.pack(fill="x")
img = ImageTk.PhotoImage(Image.open('Logo/sea.jpg'))
labelImage = Label(root, image=img, borderwidth=2)
labelImage.pack(pady=5)
enterName = Entry(root, fg="#440D16", bg="#CDCDCD")
enterName.configure(font=15)
enterName.pack()
btn1 = Button(root, text="Add your Roll Number", fg="#D35B58", bg="#80182A", width=25, height=2, command=clickCapture).pack(pady=(10,20))
btn2 = Button(root, text="Start Program with Live Camera", fg="#CDCDCD", bg="#80182A", width=25, height=2, command=startProgramWebcam).pack(pady=(0, 20))
btn3 = Button(root, text="Import Image/Video", fg="#CDCDCD", bg="#80182A", width=25, height=2, command=startProgram).pack(pady=(0, 20))
btn4 = Button(root, text="Open Attendance Sheet", fg="#CDCDCD", bg="#80182A", width=25, height=2, command=openExcelOption).pack(pady=(0, 20))
btn5 = Button(root, text="Read Me", fg="#CDCDCD", bg="#80182A", width=25, height=2, command=openReadme).pack(pady=(0, 20))
root.mainloop()