Real Time Face Attendance System Using Deep Learning
Real Time Face Attendance System Using Deep Learning
ISSN No:-2456-2165
Abstract:- Face is an individual's unique representation, distractions faced by students during exam sessions have
and therefore, we propose an automated system for become a significant issue. In addition to verbally calling
student attendance using face recognition. Face out names, the traditional method of passing around an
recognition systems have significant applications, attendance sheet in the classroom is also disruptive. This
particularly in security control systems. For instance, the problem is particularly challenging in large lecture classes
airport protection system relies on face recognition to were passing around the attendance sheet becomes
identify potential suspects, while the Federal Bureau of impractical. To address these challenges, we propose the
Investigation (FBI) utilizes this technology for criminal implementation of a face recognition student attendance
investigations. Our proposed approach begins with video system. This automated system will eliminate the need for
framing, initiated through a user-friendly interface. By manual signing, which is not only burdensome but also
employing the Viola-Jones algorithm, we detect and leads to student distractions. Moreover, the face recognition
segment the region of interest (ROI) containing the face technology employed in this system will help mitigate
from the video frame. In the preprocessing stage, we fraudulent approaches, and lecturers will no longer have to
perform image scaling as necessary to preserve repeatedly count the number of students to ensure their
information integrity. Next, we apply median filtering to presence.
eliminate noise and convert color images to grayscale. To
enhance image contrast, we implement contrast-limited The challenges related to facial identification have
adaptive histogram equalization (CLAHE). In the face been highlighted in previous studies. One such challenge is
recognition stage, we utilize enhanced local binary distinguishing between known and unknown images [1].
pattern (LBP) and principal component analysis (PCA) Furthermore, [2] discovered that the training process for
to extract facial image features. Subsequently, we record face recognition student attendance systems can be slow and
the attendance of the recognized student, saving the data time-consuming. Additionally, [3] pointed out that
in an Excel file. Unregistered students have the variations in lighting conditions and head poses can
opportunity to register on the spot, and notifications are significantly impact the performance of face recognition-
triggered if a student signs in more than once. The based student attendance systems.
recognition accuracy is 100% for high-quality images,
94.12% for low-quality images, and 95.76% for the Yale Therefore, it is imperative to create a real-time student
face database when training with two images per person. attendance system that operates within specific time
constraints to ensure accurate identification without any
Keywords:- Face recognition system, Median filtering, omissions. The extracted facial image features, which serve
CLACHE, LBP, andPCA Image Extraction. as the students' identity representation, must remain
consistent despite changes in background, lighting
I. INTRODUCTION conditions, pose, and facial expressions. The performance of
the system will be evaluated based on its high accuracy and
The main objective of this project is to develop face fast computation time.
recognition based automated student attendance system. To
achieve better performance, the test images and training A. Objectives
images of this proposed approach are limited to frontal and The goal of this project is to create an automated student
upright facial images that consist of a single face only. The attendance system based on face recognition. The expected
test images and training images must be captured by using outcomes to achieve these objectives are as follows:
the same device to ensure no quality difference. In addition, To detect the face segment from the video frame.
the students must register in the database to be recognized. To extract the useful features from the face detected.
The enrolment can be done on the spot through the user- To classify the features to recognize the face detected.
friendly interface. To record the attendance of the identified student.
Traditional student attendance marking technique is
often facing a lot of trouble. The face recognition student
attendance system emphasizes its simplicity by eliminating
classical student attendance marking technique such as
calling student names or checking respective identification
cards. The disturbances during the teaching process and
Table 1: Advantages& Disadvantages of Different Existing In addition to image scaling, it is common practice to
System convert color images to grayscale during pre-processing.
System type Advantages Disadvantage Grayscale images are known to be less sensitive to
RFID card system Simple Fraudulent usage variations in illumination and require less computational
Fingerprint system Accurate Time-consuming time. Grayscale images are represented as 8-bit images, with
Voice recognition System _ Less accurate pixel values ranging from 0 to 255, while color images are
compared to others represented as 24-bit images, with pixels capable of having
Iris recognition System Accurate Privacy Invasion 16,777,216 different values. Consequently, color images
necessitate more storage space and computational power
B. FACE DETECTION compared to grayscale images.
There is often confusion between the concepts of face
detection and face recognition. Face detection specifically When color information is not essential for the
aims to locate and isolate the face segment or region within computation, it is considered noise and can be discarded.
an image. On the other hand, face recognition goes beyond Moreover, pre-processing is crucial for enhancing the
detection and focuses on identifying the owner or individual contrast of images. One commonly used method for pre-
depicted in the facial image. Various factors can contribute processing is histogram equalization, which aims to improve
to the challenges faced in both face detection and face image contrast. By providing a uniform distribution of
recognition processes. These factors include background intensities across the intensity level axis, histogram
variations, differences in illumination, changes in pose, equalization can reduce the impact of uneven illumination.
facial expressions, occlusions, rotations, scaling, and
D. FEATURE EXTRACTION
translations. Let us now define each of these factors in more
The feature represents the information contained within
detail.
an image and is crucial for face recognition. However,
Previous researchers have conducted various studies selecting appropriate features can be a challenging task. A
on face detection methods. However, many of these studies feature extraction algorithm needs to be consistent and
focused on utilizing frontal upright facial images containing stable across various changes to achieve high accuracy
a single face. These images typically depict fully exposed results. Principal Component Analysis (PCA) is a widely
face regions without any obstructions or glasses [9][10]. The recognized method known for its robustness and high-speed
Scaling of images
Scaling is a common task in image processing, and it
involves carefully adjusting the size of the images to prevent
any loss of spatial information. In the context of face
recognition, it is important to have images of the same size
for accurate feature extraction. In this proposed approach,
the test images and training images are standardized to a
Fig. 3: Sample Images in Yale Face Database size of 250 × 250 pixels to ensure consistency. Other pre-
processing steps include median filtering, conversion of
In our database, student images are captured using color images to grayscale images, and adaptive histogram
both the laptop's built-in camera and a mobile phone equalization. These steps will be discussed in detail in the
camera. Each student provides four images, two for the subsequent sections.
training set and two for the testing set. The images captured
with the laptop's built-in camera are considered low-quality Median Filtering
images, while the images captured with the mobile phone Median filtering is an effective method for noise
camera are considered high-quality images. The high-quality reduction in images. It is known for its ability to remove
images include seventeen students, while the low-quality unwanted noise while preserving important details. In the
images include twenty-six students. The recognition rates of case of color images captured by a camera, median filtering
the low-quality and high-quality images will be compared to is applied to each of the three-color channels (red, green,
draw conclusions regarding the performance differences and blue). This ensures that noise is effectively removed
between the two sets of images. from all channels, leading to a cleaner image. Figure 4.4
provides a visual comparison of the image before and after
noise removal using median filtering in the three channels.
In the case of a grayscale image, median filtering can be
directly applied without the need for channel separation.
In this proposed approach, a user-friendly interface for The proposed approach has been trained and tested on
the face recognition student attendance system is developed various datasets. The Yale face database, containing 165
using MATLAB GUI (Graphic User Interface). The grayscale images of 15 individuals under different
interface incorporates several buttons, each serving a conditions, has been employed. However, to supplement this
specific function. The start button is used to initialize the database and account for color images, we have created our
camera and automatically perform face recognition based on own database. This database includes both high-quality and
the detected face. The register button facilitates the low-quality sets, as the images exhibit varying levels of
enrollment or registration of students, while the update clarity and blurriness. Detailed statistics for each dataset
button is designed to train the system with the latest have been previously discussed in the preceding chapter.
registered images stored in the database. Additionally, the
browse button allows the user to select facial images from a VII. CONCLUSION
designated database, and the recognize button is utilized to
test the system's functionality by recognizing the selected In this approach, a comprehensive description of a face
image.In this section, we have selected and utilized an recognition-based automated student attendance system is
enhanced Local Binary Pattern (LBP) algorithm with a provided. The proposed method aims to identify individuals
radius size of two. The reasoning behind this choice and the by comparing their input image, obtained from a recorded
analysis of the selected radius size will be elaborated on in video frame, with the training image. It includes the ability
the subsequent discussion. to detect and localize faces within an input facial image
from the recorded video frame. Furthermore, the approach
incorporates a preprocessing stage to enhance image
contrast and reduce the impact of illumination. Feature
extraction from the facial image is performed using both
Local Binary Patterns (LBP) and Principal Component
Analysis (PCA).
A. Recommendation
In this proposed approach, there are several limitations
that need to be considered. Firstly, the input image must
meet specific requirements, including being frontal, upright,
and containing only a single face. Secondly, the accuracy of
the system may decrease significantly under extreme
illumination conditions. Thirdly, there is a risk of false
recognition if the captured image is blurred or of low
Fig. 7: Project Result quality. Additionally, it should be noted that LBP is a