SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 167
Classroom Attendance Using Face Detection and Raspberry-Pi
Priya Pasumarti1, P. Purna Sekhar2
1Student, Dept. of Electronics and Communication Engineering, Andhra Pradesh, India
2Assistant Professor, Dept. Electronics and Communication Engineering, Andhra Pradesh, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Attendance for the students is an important
task in class. When done manually it generally wastes a lot
of productive time of the class. This proposed solution for
the current problem is through automation of attendance
system using face recognition. Face is the primary
identification for any human. This project describes the
method of detecting and recognizing the face in real-time
using Raspberry Pi. This project describes an efficient
algorithm using open source image processing framework
known as OpenCV. Our approach has five modules – Face
Detection, Face Preprocessing, Face Training, Face
Recognition and Attendance Database. The face database is
collected to recognize the faces of the students. The system is
initially trained with the student`s faces which is collectively
known as student database. The system uses user friendly
User interface to maximize the user experience while both
training and testing which are collecting student images
and taking attendance with the system. This project can be
used for many other applications where face recognition
can be used for authentication. Raspberry Pi usage helps in
minimizing the cost of the product and the usability as it can
be connected to any device to take the attendance. This
project uses modified algorithm of Haar’s Cascades
proposed by Viola-Jones for face detection and uses LBP
histograms for face recognition and uses SQLite (lite version
of SQL in raspberry pi) along with MYSQL to update the
database. The system will automatically update the
student’s presence in the class to the student’s database and
sends message to guardians of absentees and also to Head of
department.
Key Words: OpenCV, Raspberry Pi, Haar cascade, LBPH
recognizer, Viola-Jones framework
1. INTRODUCTION
The present day attendance system is manual. It wastes a
considerable amount of time both for teachers and
students. The waiting time of the students is increased if
attendance is taken manually. There are still chances for
proxies in the class when attendance is taken manually.
Manual attendance always a have a cost of human error.
Face is the essential recognizable proof for any human. So
automating the attendance process will increase the
productivity of the class. To make it available for every
platform we have chosen the Raspberry pi 3 for face
recognition. A Webcam is associated with the Raspberry Pi
module. Face identification separates faces from non-faces
and those countenances that can be perceived. This
module can be utilized for different applications where
face acknowledgment can be utilized for validation. In this
proposed system we take the attendance using face
recognition which recognizes the face of each student
during the class hours.
2. BLOCK DIAGRAM
Fig -1: Block diagram of Proposed Approach
2.1 Raspberry Pi 3
The Raspberry Pi is a low cost, credit-card sized computer
that plugs into a computer monitor or TV, and uses a
standard keyboard and mouse. It is a capable little device
that enables people of all ages to explore computing, and to
learn how to program in languages like Scratch and Python.
This Raspberry pi equipped with ENC28J60 which is a
Ethernet chip to get connected with internet [6].
Fig -2: Raspberry Pi 3
2.2 Camera
A camera is an optical instrument for recording or
capturing images, which may be stored locally, transmitted
to another location, or both. The images may be individual
still photographs or sequences of images constituting
videos or movies. The camera is a remote sensing device as
it senses subjects without any contact.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 168
2.3 GPIO Pins
General-purpose input/output (GPIO) is a generic pin on
an integrated circuit or computer board whose behavior—
including whether it is an input or output pin—is
controllable by the user at run time.
2.4 Power Supply
The Power Supply is a Primary requirement for the project
work. The required DC power supply for the base unit as
well as for the recharging unit is derived from the mains
line. For this purpose center tapped secondary of 12V-
012V transformer is used. From this transformer we
getting 5V power supply.
2.4 SD Card
The OS required for raspberry pi is raspbian and the
minimum recommended card size is 8 GB.
3. PROPOSED APPROACH
The total system is divided into 3 modules- Database
creation, Training the dataset, Testing, sending alert
messages as an extension.
1. Database creation
a) Initialize the camera and set an alert message to
grab the attention of the students.
b) Get user id as input
c) convert the image into gray scale, detect the face
and
d) Store it in database by using given input as label
up to 20 frames.
2. Training
a) Initialize LBPH face recognizer.
b) Get faces and Id’s from database folder to train
the LBPH face recognizer.
c) Save the trained data as xml or yml file.
3. Testing
Load Haar classifier, LBPH face recognizer and trained
data from xml or yml file.
a) Capture the image from camera,
b) Convert it into gray scale,
c) Detect the face in it and
d) Predict the face using the above recognizer.
This proposed system uses Viola Jones algorithm [1] for
face detection which uses modified Haar Cascades for
detection.
Raspberry Pi is the main component in the project. We will
be using USB webcam to capture photos. We can access
Raspberry Pi’s console either by using SSH in laptop or by
using Keyboard and mouse with the display device like TV
connected to Pi. Firstly, the algorithm needs a lot of
positive images and negative images to train the Haar
cascades classifier. Positive images are images with clear
faces where negative images are those without any faces.
Fig -3: Haar Cascades
Each feature is represented as a single value obtained
from the difference of the sums of pixels in white rectangle
from the sum of all pixels in the black rectangle. All
different possible sizes and locations of classifier is used
for calculating of plenty of features. As the number of
classifiers increase the arithmetic computations seems to
take a long time. To avoid this, we use the concept of
Integral Image. In Image Processing Integral image is a
data structure which is summed area table and algorithm
for quickly and efficiently generating sum of values in a
rectangular grid subset. Integral image is derived by using
the formula.
Fig -4: Integral image
To solve the complexity of the number of classifiers
applied for calculation we use Adaboost machine learning
algorithm, which is inbuilt in OpenCV library that is
cascade classifier, to eliminate the redundancy of the
classifiers. Any classifier which has a probability of 50% of
more in detection is treated as weak classifier. The Sum of
all weak classifier gives a strong classifier which makes
the decision about detection. Although it is very vague to
classify with one strong classifier we use the cascade of
classifiers. Classification takes place in stages, if the
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 169
selected region fails in the first stage, we discard it. We
don’t use the classifiers on that region which is discarded.
The region which passes all the stages i.e. all strong
classifiers is treated as the detected face. Detected Faces
are passed to the Face recognition phase. In this phase we
use Local Binary Patterns algorithm for face recognition.
Local binary patterns are simple at the same time very
efficient texture operator which assigns the pixels of the
image by comparing with the adjacent pixels as threshold
and which results in a binary result. The detected integral
image is subjected to this Local binary pattern which
results in decimals are represented as histogram for every
integral image. Face recognition is extremely vulnerable to
the environment changes like brightness, facial
expressions and position. Face preprocessing is the
module which reduces the problems that makes the
picture unclear to recognize the face such as less
brightness and contrast problems and noise in the image
and make sure the facial features always be in a constant
position. In this project we use histogram equalization for
face preprocessing. For efficiency we use separate
preprocessing which is histogram equalization for left and
right face. So histogram equalization is done three times,
firstly for the whole face and the other two for side faces
[7].
Fig -5: Flow Chart
4. ALGORITHMS
4.1 Python IDE
Python is an easy to learn, powerful programming
language. It has efficient high-level data structures and a
simple but effective approach to object-oriented
programming. Python’s elegant syntax and dynamic
typing, together with its interpreted nature, make it an
ideal language for scripting and rapid application
development in many areas on most platforms. The
Python interpreter is easily extended with new functions
and data types implemented in C or C++ (or other
languages callable from C). Python is also suitable as an
extension language for customizable applications.
4.2 OpenCV
OpenCV is a library of programming functions mainly
aimed at real-time computer vision. It has a modular
structure, which means that the package includes several
shared or static libraries. We are using image processing
module that includes linear and non-linear image filtering,
geometrical image transformations (resize, affine and
perspective warping, and generic table-based remapping),
color space conversion, histograms, and so on. Our project
includes libraries such as Viola-Jones or Haar classifier,
LBPH (Lower Binary Pattern histogram) face recognizer,
Histogram of oriented gradients (HOG).
A) Image processing module
Image processing is a method to perform some operations
on an image, in order to get an enhanced image (simply to
highlight certain features of interest in an image) or to
extract some useful information from it. It is a type of
signal processing in which input is an image and output
may be image or characteristics/features associated with
that image.
Purpose of Image processing
The purpose of image processing is divided into 5 groups.
They are:
1. Visualization- Observe the objects that are not visible.
2. Image sharpening and restoration- To create a better
image.
3. Image retrieval- Seek for the image of interest.
4. Measurement of pattern– Measures various objects in
an image.
5. Image Recognition– Distinguish the objects in an image.
[5]
i. Haar Classifier
This object detection framework is to provide competitive
object detection rates in real-time like detection of faces in
an image. A human can do this easily, but a computer
needs precise instructions and constraints. To make the
task more manageable, Viola–Jones requires full view
frontal upright faces. Thus in order to be detected, the
entire face must point towards the camera and should not
be tilted to either side. While it seems these constraints
could diminish the algorithm's utility somewhat, because
the detection step is most often followed by a recognition
step, in practice these limits on pose are quite acceptable
[2].
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 170
The characteristics of Viola–Jones algorithm which make it
a good detection algorithm are:
a) Robust – very high detection rate (true-positive
rate) & very low false-positive rate always.
b) Real time – For practical applications at least 2
frames per second must be processed.
c) Face detection only (not recognition) - The goal is
to distinguish faces from non-faces (detection is
the first step in the recognition process).
Fig -6: Implementation
This algorithm includes Haar feature selection process.
All human faces share some similar properties. These
regularities may be matched using Haar Features.
A few properties common to human faces:
a) The eye region is darker than the upper-
cheeks.
b) The nose bridge region is brighter than the
eyes.
Composition of properties forming matchable facial
features:
a) Location and size: eyes, mouth, bridge of nose
b) Value: oriented gradients of pixel
intensities[4]
ii. Histogram of oriented gradients (HOG)
Histogram of oriented gradients (HOG) is a feature
descriptor used to detect objects in computer vision and
image processing. The HOG descriptor technique counts
occurrences of gradient orientation in localized portions of
an image - detection window, or region of interest (ROI).
Implementation of the HOG descriptor algorithm is as
follows:
1. Divide the image into small connected regions called
cells, and for each cell compute a histogram of gradient
directions or edge orientations for the pixels within the
cell.
2. Discretize each cell into angular bins according to the
gradient orientation.
3. Each cell's pixel contributes weighted gradient to its
corresponding angular bin.
4. Groups of adjacent cells are considered as spatial
regions called blocks. The grouping of cells into a block is
the basis for grouping and normalization of histograms.
5. Normalized group of histograms represents the block
histogram. The set of these block histograms represents
the descriptor [3].
B) Numpy
NumPy is the fundamental package for scientific
computing with Python. NumPy is an acronym
for”Numeric Python” or “Numerical Python”. It is an open
source extension module for Python, which provides fast
precompiled functions for mathematical and numerical
routines. Furthermore, NumPy enriches the programming
language Python with powerful data structures for
efficient computation of multi-dimensional arrays and
matrices. The implementation is even aiming at huge
matrices and arrays. Besides that the module supplies a
large library of high-level mathematical functions to
operate on these matrices and arrays.
It contains other things like:
a) A powerful N-dimensional array object
b) Sophisticated (broadcasting) functions
c) Tools for integrating C/C++ and Fortran code
d) Useful linear algebra, Fourier transforms, and
random number capabilities.
Besides its obvious scientific uses, NumPy can also be used
as an efficient multi-dimensional container of generic data.
Arbitrary data-types can be defined. This allows NumPy to
seamlessly and speedily integrate with a wide variety of
databases.
In our project we need to convert images into multi-
dimensional or 2D-array representation, and also
conversions from gray scale to color images which can be
done easily by Numpy.
5. CONCLUSION
We came to realize that there are extensive variety of
methods, for example, biometric, RFID based and so on
which are tedious and non-productive. So to defeat this
above framework is the better and solid arrangement
from each keen of time and security. Hence we have
accomplished to build up a solid and productive
participation framework to actualize an image handling
algorithm to identify faces in classroom and to
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 171
perceive the confronts precisely to check the
attendance.
6. SCOPE and FUTURE WORK
The same project can be utilized for several security
applications where authentication is needed to access the
privileges of the respective system. It can be used in
recognizing guilty parties involving in unauthorized
business. Face recognition algorithm can be improved
with respect to the utilization of resources so that the
project can recognize more number of faces at a time
which can make the system far better. Many variants of
the project can be developed and utilized for home
security and personal or organizational benefits. We can
also trace a particular student in an organization quickly
with the help of this system.
ACKNOWLEDGEMENT
Author would like to thank P. Purna Sekhar, Assistant
Professor of Electronics and Communication Engineering
for the technical support during system experimentation.
REFERENCES
[1] Viola, P., & Jones, M. (2001). Rapid object detection
using a boosted cascade of simple features. In Computer
Vision and Pattern Recognition, 2001. CVPR 2001.
Proceedings of the 2001 IEEE Computer Society
Conference on (Vol. 1, pp. I-511). IEEE.
[2] Rohit, C., Baburao, P., Vinayak, F., &Sankalp, S.
(2015). attendance management system using face
recognition. International Journal for Innovative Research
in Science and Technology, 1(11), 55-58.
[3] NirmalyaKar, MrinalKantiDebbarma, AshimSaha, and
DwijenRudra Pal, “Implementation of Automated
Attendance System using Face Recognition”, International
Journal of Computer and Communication Engineering,
Vol. 1, No. 2, July 2012.
[4]Benfano Soewito, Ford Lumban Gaol,” Attendance
System on Android Smartphone”, 2015 International
Conference on Control, Electronics, Renewable Energy and
Communications (ICCEREC).
[5] AparnaBehara, M.V.Raghunadh, “Real Time Face
Recognition System for time and attendance applications”,
International Journal of Electrical, Electronic and Data
Communication, ISSN 2320-2084, Volume-1, Issue-4.
[6] KAWAGUCHI, Y., SHOJI, T., Weijane, L. I. N., KAKUSHO,
K., & MINOH, M. (2005). Face recognition-based lecture
attendance system. In the 3rd AEARU Workshop on
Network Education (pp. 70-75).
[7] Soundrapandiyan Rajkumar, J. Prakash, “Automated
attendance using Raspberry pi”, International Journal of
Pharmacy and Technology, Sep 2016.

Weitere ähnliche Inhalte

Was ist angesagt?

Automated attendance system using Face recognition
Automated attendance system using Face recognitionAutomated attendance system using Face recognition
Automated attendance system using Face recognitionIRJET Journal
 
Attendance Using Facial Recognition
Attendance Using Facial RecognitionAttendance Using Facial Recognition
Attendance Using Facial RecognitionVikramaditya Tarai
 
Automatic Attendance system using Facial Recognition
Automatic Attendance system using Facial RecognitionAutomatic Attendance system using Facial Recognition
Automatic Attendance system using Facial RecognitionNikyaa7
 
Face Recognition Attendance System
Face Recognition Attendance System Face Recognition Attendance System
Face Recognition Attendance System Shreya Dandavate
 
Automated Face Detection System
Automated Face Detection SystemAutomated Face Detection System
Automated Face Detection SystemAbhiroop Ghatak
 
Defected fruit detection
Defected fruit detection Defected fruit detection
Defected fruit detection Vyshnavi N Y
 
Face recognition technology
Face recognition technologyFace recognition technology
Face recognition technologyranjit banshpal
 
Face detection and recognition with pi
Face detection and recognition with piFace detection and recognition with pi
Face detection and recognition with pihetvi naik
 
Minor on Face Recognition System using Raspberry Pi
Minor on Face Recognition System using Raspberry PiMinor on Face Recognition System using Raspberry Pi
Minor on Face Recognition System using Raspberry PiNitish Bokolia
 
Face Recognition Technology
Face Recognition TechnologyFace Recognition Technology
Face Recognition Technologyusha2016
 
Face Detection
Face DetectionFace Detection
Face DetectionAmr Sheta
 
Facial Recognition Mini project 3.pdf
Facial Recognition Mini project 3.pdfFacial Recognition Mini project 3.pdf
Facial Recognition Mini project 3.pdftalkaton
 
Automated Driver Fatigue Detection
Automated Driver Fatigue DetectionAutomated Driver Fatigue Detection
Automated Driver Fatigue DetectionArman Hossain
 
Fruit Disease Detection and Classification
Fruit Disease Detection and ClassificationFruit Disease Detection and Classification
Fruit Disease Detection and ClassificationIRJET Journal
 
Automatic number-plate-recognition
Automatic number-plate-recognitionAutomatic number-plate-recognition
Automatic number-plate-recognitionDevang Tailor
 
face recognition system using LBP
face recognition system using LBPface recognition system using LBP
face recognition system using LBPMarwan H. Noman
 
Face Recognition based Lecture Attendance System
Face Recognition based Lecture Attendance SystemFace Recognition based Lecture Attendance System
Face Recognition based Lecture Attendance SystemKarmesh Maheshwari
 
Face recognization
Face recognizationFace recognization
Face recognizationleenak770
 
Face detection presentation slide
Face detection  presentation slideFace detection  presentation slide
Face detection presentation slideSanjoy Dutta
 
License Plate Recognition Using Python and OpenCV
License Plate Recognition Using Python and OpenCVLicense Plate Recognition Using Python and OpenCV
License Plate Recognition Using Python and OpenCVVishal Polley
 

Was ist angesagt? (20)

Automated attendance system using Face recognition
Automated attendance system using Face recognitionAutomated attendance system using Face recognition
Automated attendance system using Face recognition
 
Attendance Using Facial Recognition
Attendance Using Facial RecognitionAttendance Using Facial Recognition
Attendance Using Facial Recognition
 
Automatic Attendance system using Facial Recognition
Automatic Attendance system using Facial RecognitionAutomatic Attendance system using Facial Recognition
Automatic Attendance system using Facial Recognition
 
Face Recognition Attendance System
Face Recognition Attendance System Face Recognition Attendance System
Face Recognition Attendance System
 
Automated Face Detection System
Automated Face Detection SystemAutomated Face Detection System
Automated Face Detection System
 
Defected fruit detection
Defected fruit detection Defected fruit detection
Defected fruit detection
 
Face recognition technology
Face recognition technologyFace recognition technology
Face recognition technology
 
Face detection and recognition with pi
Face detection and recognition with piFace detection and recognition with pi
Face detection and recognition with pi
 
Minor on Face Recognition System using Raspberry Pi
Minor on Face Recognition System using Raspberry PiMinor on Face Recognition System using Raspberry Pi
Minor on Face Recognition System using Raspberry Pi
 
Face Recognition Technology
Face Recognition TechnologyFace Recognition Technology
Face Recognition Technology
 
Face Detection
Face DetectionFace Detection
Face Detection
 
Facial Recognition Mini project 3.pdf
Facial Recognition Mini project 3.pdfFacial Recognition Mini project 3.pdf
Facial Recognition Mini project 3.pdf
 
Automated Driver Fatigue Detection
Automated Driver Fatigue DetectionAutomated Driver Fatigue Detection
Automated Driver Fatigue Detection
 
Fruit Disease Detection and Classification
Fruit Disease Detection and ClassificationFruit Disease Detection and Classification
Fruit Disease Detection and Classification
 
Automatic number-plate-recognition
Automatic number-plate-recognitionAutomatic number-plate-recognition
Automatic number-plate-recognition
 
face recognition system using LBP
face recognition system using LBPface recognition system using LBP
face recognition system using LBP
 
Face Recognition based Lecture Attendance System
Face Recognition based Lecture Attendance SystemFace Recognition based Lecture Attendance System
Face Recognition based Lecture Attendance System
 
Face recognization
Face recognizationFace recognization
Face recognization
 
Face detection presentation slide
Face detection  presentation slideFace detection  presentation slide
Face detection presentation slide
 
License Plate Recognition Using Python and OpenCV
License Plate Recognition Using Python and OpenCVLicense Plate Recognition Using Python and OpenCV
License Plate Recognition Using Python and OpenCV
 

Ähnlich wie Classroom Attendance using Face Detection and Raspberry-Pi

IRJET- IoT based Facial Recognition Biometric Attendance
IRJET- IoT based Facial Recognition Biometric AttendanceIRJET- IoT based Facial Recognition Biometric Attendance
IRJET- IoT based Facial Recognition Biometric AttendanceIRJET Journal
 
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDSFACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDSIRJET Journal
 
IRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: SurveyIRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: SurveyIRJET Journal
 
IRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry PiIRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry PiIRJET Journal
 
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...IRJET Journal
 
IRJET - Gesture Controlled Home Automation using CNN
IRJET -  	  Gesture Controlled Home Automation using CNNIRJET -  	  Gesture Controlled Home Automation using CNN
IRJET - Gesture Controlled Home Automation using CNNIRJET Journal
 
IRJET - Automated Fraud Detection Framework in Examination Halls
 IRJET - Automated Fraud Detection Framework in Examination Halls IRJET - Automated Fraud Detection Framework in Examination Halls
IRJET - Automated Fraud Detection Framework in Examination HallsIRJET Journal
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET Journal
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET Journal
 
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET Journal
 
IRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face RecognitionIRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face RecognitionIRJET Journal
 
Smart Doorbell System Based on Face Recognition
Smart Doorbell System Based on Face RecognitionSmart Doorbell System Based on Face Recognition
Smart Doorbell System Based on Face RecognitionIRJET Journal
 
IRJET- Smart Machine System for Virtually Impaired People
IRJET-  	  Smart Machine System for Virtually Impaired PeopleIRJET-  	  Smart Machine System for Virtually Impaired People
IRJET- Smart Machine System for Virtually Impaired PeopleIRJET Journal
 
Web-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social MediaWeb-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social MediaIRJET Journal
 
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4
IRJET- Face Detection based on Image Processing using Raspberry Pi 4IRJET Journal
 
Face Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoTFace Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoTIRJET Journal
 
IRJET - Automatic Methods for Classi?cation of Plant Diseases using Back...
IRJET  -  	  Automatic Methods for Classi?cation of Plant Diseases using Back...IRJET  -  	  Automatic Methods for Classi?cation of Plant Diseases using Back...
IRJET - Automatic Methods for Classi?cation of Plant Diseases using Back...IRJET Journal
 
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET Journal
 
Automated Attendance Management System
Automated Attendance Management SystemAutomated Attendance Management System
Automated Attendance Management SystemIRJET Journal
 
IRJET- Object Detection in an Image using Convolutional Neural Network
IRJET- Object Detection in an Image using Convolutional Neural NetworkIRJET- Object Detection in an Image using Convolutional Neural Network
IRJET- Object Detection in an Image using Convolutional Neural NetworkIRJET Journal
 

Ähnlich wie Classroom Attendance using Face Detection and Raspberry-Pi (20)

IRJET- IoT based Facial Recognition Biometric Attendance
IRJET- IoT based Facial Recognition Biometric AttendanceIRJET- IoT based Facial Recognition Biometric Attendance
IRJET- IoT based Facial Recognition Biometric Attendance
 
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDSFACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
 
IRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: SurveyIRJET- Smart Classroom Attendance System: Survey
IRJET- Smart Classroom Attendance System: Survey
 
IRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry PiIRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
 
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
 
IRJET - Gesture Controlled Home Automation using CNN
IRJET -  	  Gesture Controlled Home Automation using CNNIRJET -  	  Gesture Controlled Home Automation using CNN
IRJET - Gesture Controlled Home Automation using CNN
 
IRJET - Automated Fraud Detection Framework in Examination Halls
 IRJET - Automated Fraud Detection Framework in Examination Halls IRJET - Automated Fraud Detection Framework in Examination Halls
IRJET - Automated Fraud Detection Framework in Examination Halls
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face Recognition
 
IRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face RecognitionIRJET- Computerized Attendance System using Face Recognition
IRJET- Computerized Attendance System using Face Recognition
 
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCVIRJET- Class Attendance using Face Detection and Recognition with OPENCV
IRJET- Class Attendance using Face Detection and Recognition with OPENCV
 
IRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face RecognitionIRJET- Autonamy of Attendence using Face Recognition
IRJET- Autonamy of Attendence using Face Recognition
 
Smart Doorbell System Based on Face Recognition
Smart Doorbell System Based on Face RecognitionSmart Doorbell System Based on Face Recognition
Smart Doorbell System Based on Face Recognition
 
IRJET- Smart Machine System for Virtually Impaired People
IRJET-  	  Smart Machine System for Virtually Impaired PeopleIRJET-  	  Smart Machine System for Virtually Impaired People
IRJET- Smart Machine System for Virtually Impaired People
 
Web-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social MediaWeb-Based Online Embedded Security System And Alertness Via Social Media
Web-Based Online Embedded Security System And Alertness Via Social Media
 
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
 
Face Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoTFace Recognition based Smart Attendance System Using IoT
Face Recognition based Smart Attendance System Using IoT
 
IRJET - Automatic Methods for Classi?cation of Plant Diseases using Back...
IRJET  -  	  Automatic Methods for Classi?cation of Plant Diseases using Back...IRJET  -  	  Automatic Methods for Classi?cation of Plant Diseases using Back...
IRJET - Automatic Methods for Classi?cation of Plant Diseases using Back...
 
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
 
Automated Attendance Management System
Automated Attendance Management SystemAutomated Attendance Management System
Automated Attendance Management System
 
IRJET- Object Detection in an Image using Convolutional Neural Network
IRJET- Object Detection in an Image using Convolutional Neural NetworkIRJET- Object Detection in an Image using Convolutional Neural Network
IRJET- Object Detection in an Image using Convolutional Neural Network
 

Mehr von IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

Mehr von IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Kürzlich hochgeladen

HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 

Kürzlich hochgeladen (20)

HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 

Classroom Attendance using Face Detection and Raspberry-Pi

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 167 Classroom Attendance Using Face Detection and Raspberry-Pi Priya Pasumarti1, P. Purna Sekhar2 1Student, Dept. of Electronics and Communication Engineering, Andhra Pradesh, India 2Assistant Professor, Dept. Electronics and Communication Engineering, Andhra Pradesh, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Attendance for the students is an important task in class. When done manually it generally wastes a lot of productive time of the class. This proposed solution for the current problem is through automation of attendance system using face recognition. Face is the primary identification for any human. This project describes the method of detecting and recognizing the face in real-time using Raspberry Pi. This project describes an efficient algorithm using open source image processing framework known as OpenCV. Our approach has five modules – Face Detection, Face Preprocessing, Face Training, Face Recognition and Attendance Database. The face database is collected to recognize the faces of the students. The system is initially trained with the student`s faces which is collectively known as student database. The system uses user friendly User interface to maximize the user experience while both training and testing which are collecting student images and taking attendance with the system. This project can be used for many other applications where face recognition can be used for authentication. Raspberry Pi usage helps in minimizing the cost of the product and the usability as it can be connected to any device to take the attendance. This project uses modified algorithm of Haar’s Cascades proposed by Viola-Jones for face detection and uses LBP histograms for face recognition and uses SQLite (lite version of SQL in raspberry pi) along with MYSQL to update the database. The system will automatically update the student’s presence in the class to the student’s database and sends message to guardians of absentees and also to Head of department. Key Words: OpenCV, Raspberry Pi, Haar cascade, LBPH recognizer, Viola-Jones framework 1. INTRODUCTION The present day attendance system is manual. It wastes a considerable amount of time both for teachers and students. The waiting time of the students is increased if attendance is taken manually. There are still chances for proxies in the class when attendance is taken manually. Manual attendance always a have a cost of human error. Face is the essential recognizable proof for any human. So automating the attendance process will increase the productivity of the class. To make it available for every platform we have chosen the Raspberry pi 3 for face recognition. A Webcam is associated with the Raspberry Pi module. Face identification separates faces from non-faces and those countenances that can be perceived. This module can be utilized for different applications where face acknowledgment can be utilized for validation. In this proposed system we take the attendance using face recognition which recognizes the face of each student during the class hours. 2. BLOCK DIAGRAM Fig -1: Block diagram of Proposed Approach 2.1 Raspberry Pi 3 The Raspberry Pi is a low cost, credit-card sized computer that plugs into a computer monitor or TV, and uses a standard keyboard and mouse. It is a capable little device that enables people of all ages to explore computing, and to learn how to program in languages like Scratch and Python. This Raspberry pi equipped with ENC28J60 which is a Ethernet chip to get connected with internet [6]. Fig -2: Raspberry Pi 3 2.2 Camera A camera is an optical instrument for recording or capturing images, which may be stored locally, transmitted to another location, or both. The images may be individual still photographs or sequences of images constituting videos or movies. The camera is a remote sensing device as it senses subjects without any contact.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 168 2.3 GPIO Pins General-purpose input/output (GPIO) is a generic pin on an integrated circuit or computer board whose behavior— including whether it is an input or output pin—is controllable by the user at run time. 2.4 Power Supply The Power Supply is a Primary requirement for the project work. The required DC power supply for the base unit as well as for the recharging unit is derived from the mains line. For this purpose center tapped secondary of 12V- 012V transformer is used. From this transformer we getting 5V power supply. 2.4 SD Card The OS required for raspberry pi is raspbian and the minimum recommended card size is 8 GB. 3. PROPOSED APPROACH The total system is divided into 3 modules- Database creation, Training the dataset, Testing, sending alert messages as an extension. 1. Database creation a) Initialize the camera and set an alert message to grab the attention of the students. b) Get user id as input c) convert the image into gray scale, detect the face and d) Store it in database by using given input as label up to 20 frames. 2. Training a) Initialize LBPH face recognizer. b) Get faces and Id’s from database folder to train the LBPH face recognizer. c) Save the trained data as xml or yml file. 3. Testing Load Haar classifier, LBPH face recognizer and trained data from xml or yml file. a) Capture the image from camera, b) Convert it into gray scale, c) Detect the face in it and d) Predict the face using the above recognizer. This proposed system uses Viola Jones algorithm [1] for face detection which uses modified Haar Cascades for detection. Raspberry Pi is the main component in the project. We will be using USB webcam to capture photos. We can access Raspberry Pi’s console either by using SSH in laptop or by using Keyboard and mouse with the display device like TV connected to Pi. Firstly, the algorithm needs a lot of positive images and negative images to train the Haar cascades classifier. Positive images are images with clear faces where negative images are those without any faces. Fig -3: Haar Cascades Each feature is represented as a single value obtained from the difference of the sums of pixels in white rectangle from the sum of all pixels in the black rectangle. All different possible sizes and locations of classifier is used for calculating of plenty of features. As the number of classifiers increase the arithmetic computations seems to take a long time. To avoid this, we use the concept of Integral Image. In Image Processing Integral image is a data structure which is summed area table and algorithm for quickly and efficiently generating sum of values in a rectangular grid subset. Integral image is derived by using the formula. Fig -4: Integral image To solve the complexity of the number of classifiers applied for calculation we use Adaboost machine learning algorithm, which is inbuilt in OpenCV library that is cascade classifier, to eliminate the redundancy of the classifiers. Any classifier which has a probability of 50% of more in detection is treated as weak classifier. The Sum of all weak classifier gives a strong classifier which makes the decision about detection. Although it is very vague to classify with one strong classifier we use the cascade of classifiers. Classification takes place in stages, if the
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 169 selected region fails in the first stage, we discard it. We don’t use the classifiers on that region which is discarded. The region which passes all the stages i.e. all strong classifiers is treated as the detected face. Detected Faces are passed to the Face recognition phase. In this phase we use Local Binary Patterns algorithm for face recognition. Local binary patterns are simple at the same time very efficient texture operator which assigns the pixels of the image by comparing with the adjacent pixels as threshold and which results in a binary result. The detected integral image is subjected to this Local binary pattern which results in decimals are represented as histogram for every integral image. Face recognition is extremely vulnerable to the environment changes like brightness, facial expressions and position. Face preprocessing is the module which reduces the problems that makes the picture unclear to recognize the face such as less brightness and contrast problems and noise in the image and make sure the facial features always be in a constant position. In this project we use histogram equalization for face preprocessing. For efficiency we use separate preprocessing which is histogram equalization for left and right face. So histogram equalization is done three times, firstly for the whole face and the other two for side faces [7]. Fig -5: Flow Chart 4. ALGORITHMS 4.1 Python IDE Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms. The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C). Python is also suitable as an extension language for customizable applications. 4.2 OpenCV OpenCV is a library of programming functions mainly aimed at real-time computer vision. It has a modular structure, which means that the package includes several shared or static libraries. We are using image processing module that includes linear and non-linear image filtering, geometrical image transformations (resize, affine and perspective warping, and generic table-based remapping), color space conversion, histograms, and so on. Our project includes libraries such as Viola-Jones or Haar classifier, LBPH (Lower Binary Pattern histogram) face recognizer, Histogram of oriented gradients (HOG). A) Image processing module Image processing is a method to perform some operations on an image, in order to get an enhanced image (simply to highlight certain features of interest in an image) or to extract some useful information from it. It is a type of signal processing in which input is an image and output may be image or characteristics/features associated with that image. Purpose of Image processing The purpose of image processing is divided into 5 groups. They are: 1. Visualization- Observe the objects that are not visible. 2. Image sharpening and restoration- To create a better image. 3. Image retrieval- Seek for the image of interest. 4. Measurement of pattern– Measures various objects in an image. 5. Image Recognition– Distinguish the objects in an image. [5] i. Haar Classifier This object detection framework is to provide competitive object detection rates in real-time like detection of faces in an image. A human can do this easily, but a computer needs precise instructions and constraints. To make the task more manageable, Viola–Jones requires full view frontal upright faces. Thus in order to be detected, the entire face must point towards the camera and should not be tilted to either side. While it seems these constraints could diminish the algorithm's utility somewhat, because the detection step is most often followed by a recognition step, in practice these limits on pose are quite acceptable [2].
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 170 The characteristics of Viola–Jones algorithm which make it a good detection algorithm are: a) Robust – very high detection rate (true-positive rate) & very low false-positive rate always. b) Real time – For practical applications at least 2 frames per second must be processed. c) Face detection only (not recognition) - The goal is to distinguish faces from non-faces (detection is the first step in the recognition process). Fig -6: Implementation This algorithm includes Haar feature selection process. All human faces share some similar properties. These regularities may be matched using Haar Features. A few properties common to human faces: a) The eye region is darker than the upper- cheeks. b) The nose bridge region is brighter than the eyes. Composition of properties forming matchable facial features: a) Location and size: eyes, mouth, bridge of nose b) Value: oriented gradients of pixel intensities[4] ii. Histogram of oriented gradients (HOG) Histogram of oriented gradients (HOG) is a feature descriptor used to detect objects in computer vision and image processing. The HOG descriptor technique counts occurrences of gradient orientation in localized portions of an image - detection window, or region of interest (ROI). Implementation of the HOG descriptor algorithm is as follows: 1. Divide the image into small connected regions called cells, and for each cell compute a histogram of gradient directions or edge orientations for the pixels within the cell. 2. Discretize each cell into angular bins according to the gradient orientation. 3. Each cell's pixel contributes weighted gradient to its corresponding angular bin. 4. Groups of adjacent cells are considered as spatial regions called blocks. The grouping of cells into a block is the basis for grouping and normalization of histograms. 5. Normalized group of histograms represents the block histogram. The set of these block histograms represents the descriptor [3]. B) Numpy NumPy is the fundamental package for scientific computing with Python. NumPy is an acronym for”Numeric Python” or “Numerical Python”. It is an open source extension module for Python, which provides fast precompiled functions for mathematical and numerical routines. Furthermore, NumPy enriches the programming language Python with powerful data structures for efficient computation of multi-dimensional arrays and matrices. The implementation is even aiming at huge matrices and arrays. Besides that the module supplies a large library of high-level mathematical functions to operate on these matrices and arrays. It contains other things like: a) A powerful N-dimensional array object b) Sophisticated (broadcasting) functions c) Tools for integrating C/C++ and Fortran code d) Useful linear algebra, Fourier transforms, and random number capabilities. Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. In our project we need to convert images into multi- dimensional or 2D-array representation, and also conversions from gray scale to color images which can be done easily by Numpy. 5. CONCLUSION We came to realize that there are extensive variety of methods, for example, biometric, RFID based and so on which are tedious and non-productive. So to defeat this above framework is the better and solid arrangement from each keen of time and security. Hence we have accomplished to build up a solid and productive participation framework to actualize an image handling algorithm to identify faces in classroom and to
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 171 perceive the confronts precisely to check the attendance. 6. SCOPE and FUTURE WORK The same project can be utilized for several security applications where authentication is needed to access the privileges of the respective system. It can be used in recognizing guilty parties involving in unauthorized business. Face recognition algorithm can be improved with respect to the utilization of resources so that the project can recognize more number of faces at a time which can make the system far better. Many variants of the project can be developed and utilized for home security and personal or organizational benefits. We can also trace a particular student in an organization quickly with the help of this system. ACKNOWLEDGEMENT Author would like to thank P. Purna Sekhar, Assistant Professor of Electronics and Communication Engineering for the technical support during system experimentation. REFERENCES [1] Viola, P., & Jones, M. (2001). Rapid object detection using a boosted cascade of simple features. In Computer Vision and Pattern Recognition, 2001. CVPR 2001. Proceedings of the 2001 IEEE Computer Society Conference on (Vol. 1, pp. I-511). IEEE. [2] Rohit, C., Baburao, P., Vinayak, F., &Sankalp, S. (2015). attendance management system using face recognition. International Journal for Innovative Research in Science and Technology, 1(11), 55-58. [3] NirmalyaKar, MrinalKantiDebbarma, AshimSaha, and DwijenRudra Pal, “Implementation of Automated Attendance System using Face Recognition”, International Journal of Computer and Communication Engineering, Vol. 1, No. 2, July 2012. [4]Benfano Soewito, Ford Lumban Gaol,” Attendance System on Android Smartphone”, 2015 International Conference on Control, Electronics, Renewable Energy and Communications (ICCEREC). [5] AparnaBehara, M.V.Raghunadh, “Real Time Face Recognition System for time and attendance applications”, International Journal of Electrical, Electronic and Data Communication, ISSN 2320-2084, Volume-1, Issue-4. [6] KAWAGUCHI, Y., SHOJI, T., Weijane, L. I. N., KAKUSHO, K., & MINOH, M. (2005). Face recognition-based lecture attendance system. In the 3rd AEARU Workshop on Network Education (pp. 70-75). [7] Soundrapandiyan Rajkumar, J. Prakash, “Automated attendance using Raspberry pi”, International Journal of Pharmacy and Technology, Sep 2016.