0% found this document useful (0 votes)
28 views8 pages

Paper 1

research apaper

Uploaded by

yash.maurya1304
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views8 pages

Paper 1

research apaper

Uploaded by

yash.maurya1304
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Face Recognition-based Attendance Management System Section A-Research paper

ISSN 2063-5346 FACE RECOGNITION-BASED


ATTENDANCE MANAGEMENT SYSTEM

Ms. Vinaya Kulkarni1


Article History: Received: 10.05.2023 Revised: 29.05.2023 Accepted: 09.06.2023
Abstract
The processes now in place to record and report attendance are laborious and time consuming.
When attendance is recorded manually, mistakes are more likely to occur. One of the most
popular biometric methods now in use is facial recognition. It has a wide variety of potential
uses, including but not limited to those of identification, authentication, and security. The goal
of this system is to replace the current manual attendance system with a fully automated one.
The first half of this system is already live and contains features like Redis database integration,
facial recognition, registration forms, and database access. During the second stage, we use
tools like Streamlit and Dashboard.

Keywords : OpenCV, insightface, Redis Database , Streamlit.


1
Assistant Professor, Changu Kana Thakur Arts, Commerce and Science College,
New Panvel (Autonomous)
[email protected]

DOI:10.48047/ecb/2023.12.9.71

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


720
Face Recognition-based Attendance Management System Section A-Research paper

Introduction Traditional face recognition technology has


Everything in the modern day has gone some drawbacks. For each person to train a
contactless, from business administration to model, massive sample sizes of photos are
classroom instruction to monetary needed (200 to at least 100 photos per
transactions. Students' arrival and leave person). Unable to add additional person
from the classroom can now be recorded details to a trained model. Retraining the
reliably and conveniently through the use of model with all the data is necessary. As the
contactless attendance systems. Successful number of people classified increases, the
preventative measures against the COVID- model's accuracy decreases. Prolonged
19 epidemic include going touchless. processing time.
Taking attendance the old fashioned way is Fast Face Recognition Model has benefits
a time-consuming and laborious process in such as Fewer samples being needed, For a
classroom settings. Probabilities of a proxy new person no model retraining is
showing up are not zero. As a result, a necessary, It is accurate enough and It has
variety of alternative methods, including quick processing.
RFID, iris recognition, fingerprint Face recognition, machine learning,
recognition, and so on, have been artificial intelligence, and other fields use
implemented by numerous educational OpenCV, a Python open-source package,
institutions as a means of keeping track of for computer vision. The term "OpenCV"
students' attendance.[4] refers to the Open-Source Computer Vision
In recent years, face recognition has Library, which is frequently used for image
emerged as a highly effective method for identification or recognition. In 1999, Intel
analyzing and interpreting images, making gave it its official debut. Early versions
it one of the most widely studied issues in were written in C/C++, although Python is
computer vision. Some of the most also frequently used for computer vision
common applications involve discovering today.
missing persons, investigating retail crimes, Insight Face is an integrated Python library
identifying security threats, locating social for 2D&3D face analysis. Insight Face
media profiles, monitoring classroom efficiently implements a rich variety of
attendance, and identifying drivers. state-of-the-art algorithms for face
Incorporating face recognition into recognition, face detection, and face
everyday life has the potential to make it a alignment, which optimized for both
safer, smarter, and more useful place. training and deployment. Research institute
Methods typically used in facial recognition and industrial organization can get benefits
include: from Insight Face library.[6]
Face Detection: Face detector algorithms Literature Review
locate faces, draw bounding boxes around Authors in [4] proposed a model of a face
faces, and keep the coordinates of bounding recognition-based attendance system. The
boxes. [5] four stages of this system are database
1. Face Alignments: Normalize the building, face detection, face recognition,
faces to be consistent with the and attendance updating. Images of the
training database.[5] students in class are used to develop
2. Feature Extraction: Extract features databases. The Haar-Cascade classifier and
of faces that will be used for training the Local Binary Pattern Histogram
and recognition tasks.[5] technique are used, respectively, for face
detection and recognition. Faces are picked
3. Face Recognition: Matching the up and recognized in the classroom's live-
face against one or more known streamed footage. Attendance will be
faces in a prepared database.[5]

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


721
Face Recognition-based Attendance Management System Section A-Research paper

mailed to the relevant professors at the and LBP, the image is relocated for
conclusion of the session. recognition.
In this paper [3], Face detection is the In this paper [2], The EigenFaces
procedure where a face is sought out in an recognizer will be the one on which this
image that is provided as an input (picture), research will centre. The idea behind
and then the facial image is cleaned up for EigenFaces is straightforward: it detects a
easier face identification. To identify faces, certain face by identifying its largest
the CNN algorithm can be used. deviation, then turns those variances into
Authors in [1] proposed a model of an data that can be compared when a new face
Attendance Management System Using enters the scene. The path to each image
Face Recognition. The primary goal is to and its labels will be read from the csv file
automate the attendance system by during training and stored into a list
integrating facial recognition technology variable. The list will then be provided into
with the Matlab Graphical User Interface the training function, where it will take a
(GUI), modified Local Binary Pattern specific amount of time to complete the
(LBP), and Support Vector Machine (SVM) training. The amount of time required to
algorithm. Once face detection and feature train those images will increase with the
extraction are completed using Viola Jones size of the face database.

Methodology for face recognition:

An image of a person is recorded using Machine Learning Search Algorithms like


video surveillance. In the Radis database, Euclidean Distance, Manhattan Distance,
capture footage is kept. Redis is an in- and Cosine Similarity are used to extract
memory data structure store that is open features. Machine learning heavily relies on
source (BSD licenced), used as a database, distance measurements. Depending on the
cache, message broker, and streaming sorts of data, different distance measures
engine. Redis uses an in-memory dataset in must be selected and applied. As a result,
order to deliver the best performance. it's critical to understand the
implementation, calculation, and

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


722
Face Recognition-based Attendance Management System Section A-Research paper

interpretation of a variety of widely used


distance measures.
The shortest distance between two vectors
is represented by the Euclidean Distance. It
is the sum of squares of differences between
corresponding elements, or its square root. The cosine similarity index calculates how
The L2-norm of a difference between similar two vectors in an inner product
vectors and vector spaces is equivalent to space are to one another. It establishes
the Euclidean distance metric. It is whether two vectors roughly point in the
determined mathematically using same direction by calculating the cosine
Pythagoras' Theorem. The sum of the angle between them.
squares along each perpendicular ordinate The cosine similarity may be expressed as:
represents the overall distance between two
objects.
Euclidean Distance may be expressed as:
An open-source Python toolkit called
Streamlit makes it simple to develop and
distribute stunning, personalized web apps
for data science and machine learning.
Using Streamlit App, an attendance app was
developed.
The Manhattan Distance is the total of all
the absolute disparities between two points Results and Discussion
in all the dimensions. The project's basic operating premise is that
Manhattan Distance may be expressed as: video data is transformed into images in
order to be detected and recognised.
Additionally, attendance includes the
student's recognisable photograph.

Figure 1: Home Page Figure 2 : Dataset

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


723
Face Recognition-based Attendance Management System Section A-Research paper

Figure 3: Registration Figure 4 : Registered Data

Figure 5: Real Time Prediction Figure 6 : Log Report

Conclusion
A face-recognition automatic attendance M. SMART AND INNOVATIVE
system automatically determines the name IDEAS TO PROMOTE TOURISM
of the person. The suggested application FOR GLOBAL TRADE AND
can identify registered teachers and ECONOMIC GROWTH.
students. 3. Ebrahimi, M., Attarilar, S., Gode,
For individuals who don't register, this C., Kandavalli, S. R., Shamsborhan,
system identifies the unregistered. Each M., & Wang, Q. (2023). Conceptual
day, note when students enter and leave. Analysis on Severe Plastic
Obtain the instructor's and the student’s Deformation Processes of Shape
daily attendance records. Memory Alloys: Mechanical
Properties and Microstructure
Characterization. Metals, 13(3),
References 447.
4. J. K. S. Al-Safi, A. Bansal, M. Aarif,
1. Chaitra T.K, M.C. Chandrashekhar,
M. S. Z. Almahairah, G. Manoharan
Dr. M.Z. Kurian [August 2018] ,
and F. J. Alotoum, "Assessment
“Attendance Management System
Based On IoT For Efficient
Using Face Recognition”, JETIR ,
Information Surveillance Regarding
Volume 5, Issue 8 , ISSN-2349-
Harmful Strikes Upon Financial
5162
Collection," 2023 International
2. Principal, S. H. M., Mishra, A.,
Conference on Computer
Sharma, J. K., Aarif, M., & Arwab,
Communication and Informatics

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


724
Face Recognition-based Attendance Management System Section A-Research paper

(ICCCI), Coimbatore, India, 2023, application. Frontiers in Materials,


pp. 1-5, doi: 140.
10.1109/ICCCI56745.2023.101285 10. C. Kaur, T. Panda, S. Panda, A.
00. Rahman Mohammed Al Ansari, M.
5. Khan, S.I., Kaur, C., Al Ansari, Nivetha and B. Kiran Bala,
M.S. et al. Implementation of cloud "Utilizing the Random Forest
based IoT technology in Algorithm to Enhance Alzheimer’s
manufacturing industry for smart disease Diagnosis," 2023 Third
control of manufacturing International Conference on
process. Int J Interact Des Artificial Intelligence and Smart
Manuf (2023). Energy (ICAIS), Coimbatore, India,
https://doi.org/10.1007/s12008- 2023, pp. 1662-1667, doi:
023-01366-w 10.1109/ICAIS56108.2023.100738
6. M, Arun and Alalmai, Ali and Aarif, 52.
Mohd, Student's Anticipation in 11. M. A. Tripathi, R. Tripathi, F.
Procuring Post Graduation Effendy, G. Manoharan, M. John
Programme in Hotel Management Paul and M. Aarif, "An In-Depth
through Distance Learning (March Analysis of the Role That ML and
1, 2022). ANWESH: International Big Data Play in Driving Digital
Journal of Management & Marketing’s Paradigm Shift," 2023
Information Technology (2022), International Conference on
Available at Computer Communication and
SSRN: https://ssrn.com/abstract=4 Informatics (ICCCI), Coimbatore,
072674 India, 2023, pp. 1-6, doi:
7. Tidake, Vishal & Mazumdar, 10.1109/ICCCI56745.2023.101283
Nilanjan & Kumar, A. & Rao, B. & 57.
Fatma, Dr Gulnaz & Raj, I.. (2023). 12. Siddiqua, A. Anjum, S. Kondapalli
Sentiment Analysis of Movie and C. Kaur, "Regulating and
Review using Hybrid Optimization monitoring IoT controlled solar
with Convolutional Neural Network power plant by ML," 2023
in English Language. 1668-1673. International Conference on
10.1109/ICAIS56108.2023.100737 Computer Communication and
50. Informatics (ICCCI), Coimbatore,
8. Kaur, C., Panda, T., Panda, S., Al India, 2023, pp. 1-4, doi:
Ansari, A. R. M., Nivetha, M., & 10.1109/ICCCI56745.2023.101283
Bala, B. K. (2023, February). 00.
Utilizing the Random Forest 13. Dr. V Suresh, Srinivasa
Algorithm to Enhance Alzheimer’s Chakravarthi Dumpa, Chiranjeevi
disease Diagnosis. In 2023 Third Deepak Vankayala, HaneeshaAduri,
International Conference on Jayasree Rapa [2019], “Facial
Artificial Intelligence and Smart Recognition Attendance System
Energy (ICAIS) (pp. 1662-1667). Using Python and OpenCV”,
IEEE. Journal of Software Engineering
9. Kandavalli, S. R., Wang, Q., and Simulation Volume 5 : Issue 2
Ebrahimi, M., Gode, C., (2019) pp: 18-29 ISSN(Online)
Djavanroodi, F., Attarilar, S., & Liu, :2321-3795 ISSN (Print):2321-
S. (2021). A brief review on the 3809
evolution of metallic dental 14. M. Lourens, A. Tamizhselvi, B.
implants: history, design, and Goswami, J. Alanya-Beltran, M.
Aarif and D. Gangodkar, "Database

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


725
Face Recognition-based Attendance Management System Section A-Research paper

Management Difficulties in the 20. Mourad, H. M., Kaur, D., & Aarif,
Internet of Things," 2022 5th M. (2020). Challenges Faced by Big
International Conference on Data and Its Orientation in the Field
Contemporary Computing and of Business
Informatics (IC3I), Uttar Pradesh, Marketing. International Journal of
India, 2022, pp. 322-326, doi: Mechanical and Production
10.1109/IC3I56241.2022.10072614 Engineering Research and
. Development (IJMPERD), 10(3),
15. Dhas, D. S. E. J., Raja, R., Jannet, 8091-8102.
S., Wins, K. L. D., Thomas, J. M., & 21. Ruban, S. R., Jayaseelan, P., Suresh,
Kandavalli, S. R. (2023). Effect of M., & RatnaKandavalli, S. (2020,
carbide ceramics and coke on the December). Effect of textures on
properties of dispersion machining of carbon steel under dry
strengthened aluminium‐silicon7‐ cutting condition. In IOP
magnesium hybrid composites. Conference Series: Materials
Materialwissenschaft und Science and Engineering (Vol. 993,
Werkstofftechnik, 54(2), 147-157. No. 1, p. 012143). IOP Publishing.
16. Prabha, C., Arunkumar, S. P., 22. Naidu, K. B., Prasad, B. R., Hassen,
Sharon, H., Vijay, R., Niyas, A. M., S. M., Kaur, C., Al Ansari, M. S.,
Stanley, P., & Ratna, K. S. (2020, Vinod, R., ... & Bala, B. K. (2022).
March). Performance and Analysis of Hadoop log file in an
combustion analysis of diesel environment for dynamic detection
engine fueled by blends of diesel+ of threats using machine
pyrolytic oil from Polyalthia learning. Measurement:
longifolia seeds. In AIP Conference Sensors, 24, 100545.
Proceedings (Vol. 2225, No. 1, p. 23. Suman, P., Bannaravuri, P. K.,
030002). AIP Publishing LLC. Baburao, G., Kandavalli, S. R.,
17. Abd Algani, Y. M., Caro, O. J. M., Alam, S., ShanthiRaju, M., &
Bravo, L. M. R., Kaur, C., Al Pulisheru, K. S. (2021). Integrity on
Ansari, M. S., & Bala, B. K. (2023). properties of Cu-based composites
Leaf disease identification and with the addition of reinforcement:
classification using optimized deep A review. Materials Today:
learning. Measurement: Proceedings, 47, 6609-6613.
Sensors, 25, 100643. 24. Kandavalli, S. R., Rao, G. B.,
18. Ratna, K. S., Daniel, C., Ram, A., Bannaravuri, P. K., Rajam, M. M.
Yadav, B. S. K., & Hemalatha, G. K., Kandavalli, S. R., & Ruban, S.
(2021). Analytical investigation of R. (2021). Surface strengthening of
MR damper for vibration control: a aluminium alloys/composites by
review. Journal of Applied laser applications: A comprehensive
Engineering Sciences, 11(1), 49-52. review. Materials Today:
19. Abd Algani, Y. M., Ritonga, M., Proceedings, 47, 6919-6925.
Kiran Bala, B., Al Ansari, M. S., 25. Sharma, Nisha, Anil Kumar Yadava,
Badr, M., & Taloba, A. I. (2022). Mohd Aarif, Harishchander
Machine learning in health Anandaram, Ali Alalmai, and
condition check-up: An approach Chandradeep Singh. "Business
using Breiman’s random forest Opportunities And Challenges For
algorithm. Measurement: Sensors, Women In The Travel And Tourism
23, 100406. Industry During Pandemics Covid-
https://doi.org/10.1016/j.measen.20 19." Journal of Positive School
22.100406 Psychology (2022): 897-903.

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


726
Face Recognition-based Attendance Management System Section A-Research paper

26. Raja, R., Jegathambal, P., Jannet, S., Saudi Arabia." A case study of
Thanckachan, T., Paul, C. G., Reji, Gizan (Jazan) (2019).
S., & Ratna, K. S. (2020, 32. Abd Algani, Y. M., Ritonga, M.,
November). Fabrication and study Kiran Bala, B., Al Ansari, M. S.,
of Al6061-T6 reinforced with TiO2 Badr, M., & Taloba, A. I. (2022).
nanoparticles by the process of Machine learning in health
friction stir processing. In AIP condition check-up: An approach
Conference Proceedings (Vol. using Breiman’s random forest
2270, No. 1, p. 030002). AIP algorithm. Measurement: Sensors,
Publishing LLC. 23, 100406.
27. Face Recognition Attendance https://doi.org/10.1016/j.measen.20
System Using Python 22.100406
(analyticsvidhya.com) 33. Smitha, Pavithra S Hegde, Afshin [
28. InsightFace: an open source May-2020],” Face Recognition
2D&3D deep face analysis library based Attendance Management
29. Kumar, B., & Kumar, P. (2022). System”, IJERT, ISSN:2278-0181,
Preparation of hybrid reinforced Vol. 9 Issue 05
aluminium metal matrix composite 34.
by using ZrB2: A systematic 35. Mourad, H. M., Kaur, D., & Aarif,
review. Materials Today: M. (2020). Challenges Faced by Big
Proceedings. Data and Its Orientation in the Field
30. Kandavalli, S. R., Khan, A. M., of Business
Iqbal, A., Jamil, M., Abbas, S., Marketing. International Journal of
Laghari, R. A., & Cheok, Q. (2023). Mechanical and Production
Application of sophisticated sensors Engineering Research and
to advance the monitoring of Development (IJMPERD), 10(3),
machining processes: analysis and 8091-8102.
holistic review. The International 36. Nandhini R, Duraimurugan N,
Journal of Advanced S.P.Chokkalingam [ February
Manufacturing Technology, 1-26. 2019], “Face Recognition Based
31. Aarif, Mohd, and Ali Alalmai. Attendance System”, IJEAT, ISSN:
"Importance of Effective Business 2249 – 8958, Volume-8, Issue-3S
Communication for promoting and 37. OpenCvDocumentation -
developing Hospitality Industry in https://opencv.org

Eur. Chem. Bull. 2023,12(Special Issue 9), 720-727


727

You might also like