SlideShare a Scribd company logo
International Journal of Engineering Research and Development
e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com
Volume 13, Issue 8 (August 2017), PP.52-62
52
An Iot Based Smart Manifold Attendance System
*
Dr.Sanjay Jain1,Syeda Sana2,Theertha Prabhakaran3,Liby Ann Baby4
1HOD, Department of ECE, New Horizon College of Engineering, Bangalore, India.
2UG Student , Department of ECE, New Horizon College of Engineering, Bangalore, India.
3UG Student , Department of ECE, New Horizon College of Engineering, Bangalore, India.
4UG Student , Department of ECE, New Horizon College of Engineering, Bangalore, India.
Corresponding author:
*
Dr.Sanjay Jain
ABSTRACT:- Attendance has been an age old procedure employed in different disciplines of educational
institutions. While attendance systems have witnessed growth right from manual techniques to biometrics, plight
of taking attendance is undeniable. In fingerprint based attendance monitoring, if fingers get roughed /
scratched, it leads to misreading. Also for face recognition, students will have to make a queue and each one
will have to wait until their face gets recognised. Our proposed system is employing “manifold attendance” that
means employing passive attendance, where at a time, the attendance of multiple people can get captured. We
have eliminated the need of queue system / paper-pen system of attendance, and just with a single click the
attendance is not only captured, but monitored as well, that too without any human intervention. In the proposed
system, creation of database and face detection is done by using the concepts of bounding box, whereas for face
recognition we employ histogram equalization and matching technique.
Keywords:- Bounding box, Face detection, Face recognition, Histogram, Manifold (passive)
I. INTRODUCTION
The traditional attendance technique involves human to human interaction (attendance slip being
passed from teacher to peon) and human to computer interaction (teacher updates the attendance in the system).
While a normal working day comprises of 7 to 8 hours of class, even if a minimal of 10 minutes each is devoted
for attendance, it sums up to approximately 80 minutes per day. This is truly increasing the plight of the teacher.
Advancements in attendance included techniques like retinal scanning, fingerprint scanning, face recognition.
Smart Manifold Attendance using Real Time Face Recognition is a real world solution to the existing issues in
traditional methods. This system consists of four phases - face database, face detection, face recognition and
marking attendance. Image acquisition is accomplished using a camera fitted in the classroom. The system first
stores the faces in the database. The faces of students are detected / located from the image captured in real time.
The detected faces are then compared with those stored in the database during face recognition. If the system
recognizes faces, the attendance gets marked immediately in the excel sheets. Also, we send hourly text
messages to parents, of wards that are absent. Teachers‟ attendance is monitored as well. As per VTU, 52 hours
need to be completed per subject and this purpose is also served in the proposed system on a MATLAB
platform.
II. METHODOLOGY
This section discusses starting from the creation of database, face detection, recognition of faces from
the captured image and performing appropriate attendance updating and monitoring without any human
intrusion.
The step by step procedure for implementation is as follows:
Step 1: Creation of database
Step 2: Capturing a classroom image in real time from a web camera
Step 3: Detecting/Locating faces in the captured image
Step 4: Recognising faces i.e comparing the detected faces with those present in the database.
Step 5: Updating Excel sheets
Step 6: Sending text messages using GSM module
Step 7: Sending mail containing summary of the attendance
Step 8: Updating ThingSpeak page
Fig 1 shows the architecture of the manifold attendance system . An image of the classroom is
captured from the camera, in our prototype the images are already fed into the system and the image is given to
An Iot Based Smart Manifold Attendance System
53
the MATLAB environment for further processing in order to extract faces from the group picture. Face
recognition is performed to determine if the student is present or absent. After which, the corresponding details
are given to the GSM module where text messages are sent and attendance summary is mailed to the HOD. IOT
concepts are employed to provide ease in attendance tracking.
Fig 1: Proposed architecture for manifold attendance system
A. Creating Database: Acquisition from Live Streaming Video
It is necessary to store the images of all the students in an organization. To facilitate ease in doing so,
live video acquisition is done so that snapshots are taken from a live video. The user will be first asked to enter
the USN of the student like so:
A. Creating Database: Acquisition from Live Streaming Video
It is necessary to store the images of all the students in an organization. To facilitate ease in doing so,
live video acquisition is done so that snapshots are taken from a live video. The user will be first asked to enter
the USN of the student like so:
Fig 2:Interface for entering USN
An Iot Based Smart Manifold Attendance System
54
After which, the video player gets enabled .Face Detect function helps to locate the face and returns the
row-column where the face begins and the face ends. Using this, a bounding box is drawn. Point Tracker
stabilizes the video and provides camera motion estimation.
Fig 3: Live stream
Fig 4: Snapshots and cropped faces
An Iot Based Smart Manifold Attendance System
55
Fig 5: Database created
B. Image Acquisition
Image acquisition in general involves the capturing or getting an image from a source. In real time
implementation of smart attendance monitoring system, a webcam or a HD camera is fixed at a suitable
position, create a webcam object and then use the snapshot function to acquire images from a webcam. We can
acquire a single image or set up a loop to acquire multiple images and use the preview function to test the
camera stream. The MATLAB GUI (Graphical User Interface) is implemented using the GUIDE option
available in MATLAB.
C. Face Detection
Face detection is the computer technology that identifies the human faces in digital images. A human
can do this easily, but a computer requires precise instructions and constraints. MATLAB provides an inbuilt
function called Cascade Object Detector to locate the faces in the captured image .This inbuilt function make
use of the Viola Jones algorithm that detects the eyes, nose, face in the upper portion of the body. 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. The goal is to distinguish
between faces and non-faces. Skin color varies with many facts such as race, health, degree of sun tan etc.
Consider an example of a captured image in which two faces are detected. The pixels that are closely related to
skin pixels appear white. The pixels that have a drastic change in the pixel value compared to the previous
pixels collectively appear as black. A pixel value is classified as skin pixel if its value falls within the threshold.
An Iot Based Smart Manifold Attendance System
56
Fig 6 : Creation of Bounding Box on detected faces.
Once the faces are identified in the captured image, they need to be demarcated which is employed by using the
concept of bounding box. A bounding box represents the co-ordinates of the rectangular border thatencloses a
digital image, It uses the co-ordinates at the initial and the final point where it recognizes the skin pixels to form
diagonal and thereby draw the rectangle.
Each row in the matrix of the bounding box represents a face been detected. Thus, the number of rows gives the
number of faces that are located in the captured image and thereby the number of students present in each class.
The faces that are pointed by bounding box (Fig 5) are cropped and fed as input for further processing.This
concept is used when there is a single student in case of data base creation or multiple students in case of real
time attendance monitoring.
D. Face Recognition
For face recognition, we employ the technique of histogram equalization.
The steps involved are:
1. Consider an image as shown below, whose pixel values are represented using 3-bit data. There are 8
possible grey levels ranging from 0-7
2. Determine Pixel frequency and their respective pixel probability P(i).
An Iot Based Smart Manifold Attendance System
57
Fig 7: Results of steps in histogram equalization and enhanced image matrix.
E. Face Matching
 First value of the test_processed_bin (histogram values of the detected face) is then compared with all the
values of train_processed_bin (histogram values of image in the database) to determine a certain distance
given by EU =
 {a –b} ; where a= test_processed_bin, and b= train_processed_bin The EU values corresponding to each of
the images are stored as img_bin_hist_sum which is a single columned matrix.
 By using the function min, we can determine the minimum value „M‟, as well as the corresponding index
„temp‟ of that value „M‟ present in a matrix. This function is used to determine the minimum EUand is
stored as M. [ temp M] = min ( img_bin_hist_sum );
 The bin value is used to differentiate histograms of different people. i.e. The obtained M value is divided by
this bin value and rounded off to nearest positive infinity and updated. The value hence gives the folder
number where the image histogram match was found.
 Depending on the folder found, the first image present is selected by default and displayed as
 “STUDENT NAME FACE FOUND”.
F. Updating Excel Sheets
Some key features of the excel sheets include:
 Column A is dedicated for the list of students.
 Column B is dedicated for the USN numbers of respective students.
 A total of 10 classes will be taken for each of the 4 subjects from column C to L
 Percentage calculation is done using the formula :
(Number of classes attended / Total number of classes taken)
An Iot Based Smart Manifold Attendance System
58
Fig 8: Excel sheet corresponding to 10 students and 10 classes
G. Sending Messages
Serial communication is used and appropriate port name must be included to activate it. Character „A‟
is sent to the controller which then uses Send SMS function to send the message employing the GSM module.
Likewise, a unique character will be assigned for each student like „B‟,‟C‟ and so on and in case of student‟s
absence, that particular character is considered, from which the students name is decoded and this will be sent to
LCD for displaying.
H. Sending Mail
Function sendmail (recipient, subject, message, attachments) is used to mail the updated sheet to the
email-id specified. We use JAVA concepts to initialize the mail sending process, SMTP and setting preferences.
I. Implementation of IOT
The Internet of Things (IOT) is a system of „connected things‟. The things generally comprise of an
embedded operating system and an ability to communicate with the internet or with the neighbouring things.
One of the key elements of a generic IOT system that bridges the various „things‟ is an IOT service. An
interesting implication from the „things‟ comprising the IOT systems is that the things by themselves cannot do
anything. At a bare minimum, they should have an ability to connect to other „things‟. But the real power of IOT
is harnessed when the things connect to a „service‟ either directly or via other „things‟. In such systems, the
service plays the role of an invisible manager by providing capabilities ranging from simple data collection and
monitoring to complex data analytics. The below diagram illustrates where an IOT service fits in an IOT
ecosystem. One such IOT application platform that offers a wide variety of analysis, monitoring and
counteraction capabilities is „ThingSpeak‟. The channel page settings and display of attendance on ThingSpeak
is shown in Fig 12.
An Iot Based Smart Manifold Attendance System
59
III. RESULTS
All This section mainly shows the experimented results of the implemented algorithm. Each steps of
the algorithm is executed in the MATLAB and all the expected results are discussed below. Fig 9 shows the
overview of the GUI model, the algorithm is developed in MATLAB using graphical user interface (GUI), the
platform of MATLAB which enables to develop a devise without any hardware requirement. Let us consider a
test case where only two students are present. The teacher enters the subject name and the class number as well,
where the corresponding excel sheet is selected. By clicking on the „capture‟ ushbutton an image of classroom
is captured. Fig 10 shows how the faces are detected and cropped. These faces are temporarily stored which is
then compared with the faces present in the database on clicking the „Test‟ pushbutton. Here the technique of
histogram matching is employed as discussed earlier where the best face is matched. The face under test, the
matched face is then displayed as shown in Fig 11. Based on the faces recognised excel sheets are updated and
on clicking the „Send Message‟ and „Send Mail‟ pushbuttons text messages and mail is sent respectively as
shown in Fig 12. All the above discussed steps can be carried out at one stretch without any intervention with
LIVE pushbutton, where each step will be executed one after another with a mentioned time span.
Fig 9: Overview of GUI
Fig 10: Test case considered
An Iot Based Smart Manifold Attendance System
60
Fig 11: Dialogue box display for detected faces
Fig 11: Screenshots of how text messages and mail is received
An Iot Based Smart Manifold Attendance System
61
Fig 12: Details of channels created and display of student attendance on ThingSpeak
An Iot Based Smart Manifold Attendance System
62
IV. CONCLUSIONS
A study of image processing techniques and the existing attendance techniques was done and the
MATLAB program for the manifold recognition of students in a captured classroom picture was successfully
ccomplished. The attendance sheets were created using MS-Excel. The interface of LPC2148 with LCD, GSM
module was done. IOT assistance was successfully provided using ThingSpeak. The program corresponding to
hardware flow was written in Kiel u4, dumped on the controller using Flash magic
and was successfully tested.
ACKNOWLEDGMENT
All work done, images shown in this paper are for educational purpose only and not for commercial purpose.
REFERENCES
[1]. “Performance evaluation and comparison of PCA based, face recognition methods for distorted
Images”,
[2]. B.Poon, M.Ashraful Amin, Hong Yan, International Journal of Machine learning and cybernetics,
Volume 2, July, 2011.
[3]. “Face Recognition and Verification using Histogram Equalization” by Kelsey, Ramiraz, Daniel,
Hector,
[4]. Postgraduate Section of Studies and Investigation Mechanical and Electrical Engineering School,
National
[5]. Polytechnic Institute. Av, International Journal of Scientific & Engineering Research Volume 3, Issue
12, December-2012
[6]. Face recognition based attendance management system by using embedded Linux by T Muni Reddy, V
[7]. Prasad, N V Ramanaiah, IJERST, May 2015
[8]. MATLAB GUI Tutorial for Beginners-https://www.youtube.com
[9]. https://www.mathworks.com/matlabcentral/answers/32137-use-video-live-stream
[10]. https://thingspeak.com/pages/how_to
[11]. Rectangle around the object, Bounding box – https://in.mathworks.com
*Dr.Sanjay Jain. “An Iot Based Smart Manifold Attendance System.” International Journal of
Engineering Research and Development, vol. 13, no. 08, 2017, pp. 52–62.

More Related Content

What's hot

International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
IJERD Editor
 
IRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET Journal
 
Volume 2-issue-6-2064-2067
Volume 2-issue-6-2064-2067Volume 2-issue-6-2064-2067
Volume 2-issue-6-2064-2067Editor IJARCET
 
School Bus Tracking and Security System
School Bus Tracking and Security SystemSchool Bus Tracking and Security System
School Bus Tracking and Security System
IJSRED
 
IRJET- Survey on Face Recognition using Biometrics
IRJET-  	  Survey on Face Recognition using BiometricsIRJET-  	  Survey on Face Recognition using Biometrics
IRJET- Survey on Face Recognition using Biometrics
IRJET Journal
 
FACE RECOGNITION USING NEURAL NETWORK
FACE RECOGNITION USING NEURAL NETWORKFACE RECOGNITION USING NEURAL NETWORK
FACE RECOGNITION USING NEURAL NETWORK
codebangla
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
An Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processingAn Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processing
theijes
 
3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image
Waqas Tariq
 
Review of Various Image Processing Techniques for Currency Note Authentication
Review of Various Image Processing Techniques for Currency Note AuthenticationReview of Various Image Processing Techniques for Currency Note Authentication
Review of Various Image Processing Techniques for Currency Note Authentication
IJCERT
 
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Waqas Tariq
 
Counterfeit Currency Detection using Image Processing
Counterfeit Currency Detection using Image ProcessingCounterfeit Currency Detection using Image Processing
Counterfeit Currency Detection using Image Processing
karthik0101
 
Text and Object Recognition using Deep Learning for Visually Impaired People
Text and Object Recognition using Deep Learning for Visually Impaired PeopleText and Object Recognition using Deep Learning for Visually Impaired People
Text and Object Recognition using Deep Learning for Visually Impaired People
ijtsrd
 
Explaining Aluminous Ascientification Of Significance Examples Of Personal St...
Explaining Aluminous Ascientification Of Significance Examples Of Personal St...Explaining Aluminous Ascientification Of Significance Examples Of Personal St...
Explaining Aluminous Ascientification Of Significance Examples Of Personal St...
SubmissionResearchpa
 
IRJET- Finger Gesture Recognition using Laser Line Generator and Camera
IRJET- Finger Gesture Recognition using Laser Line Generator and CameraIRJET- Finger Gesture Recognition using Laser Line Generator and Camera
IRJET- Finger Gesture Recognition using Laser Line Generator and Camera
IRJET Journal
 
Hand Segmentation for Hand Gesture Recognition
Hand Segmentation for Hand Gesture RecognitionHand Segmentation for Hand Gesture Recognition
Hand Segmentation for Hand Gesture Recognition
AM Publications,India
 
Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.
Takrim Ul Islam Laskar
 
Performance Enhancement Of Multimodal Biometrics Using Cryptosystem
Performance Enhancement Of Multimodal Biometrics Using CryptosystemPerformance Enhancement Of Multimodal Biometrics Using Cryptosystem
Performance Enhancement Of Multimodal Biometrics Using Cryptosystem
IJERA Editor
 

What's hot (19)

International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
IRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture Recognition
 
Volume 2-issue-6-2064-2067
Volume 2-issue-6-2064-2067Volume 2-issue-6-2064-2067
Volume 2-issue-6-2064-2067
 
School Bus Tracking and Security System
School Bus Tracking and Security SystemSchool Bus Tracking and Security System
School Bus Tracking and Security System
 
IRJET- Survey on Face Recognition using Biometrics
IRJET-  	  Survey on Face Recognition using BiometricsIRJET-  	  Survey on Face Recognition using Biometrics
IRJET- Survey on Face Recognition using Biometrics
 
FACE RECOGNITION USING NEURAL NETWORK
FACE RECOGNITION USING NEURAL NETWORKFACE RECOGNITION USING NEURAL NETWORK
FACE RECOGNITION USING NEURAL NETWORK
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
An Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processingAn Automatic Attendance System Using Image processing
An Automatic Attendance System Using Image processing
 
3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image
 
Review of Various Image Processing Techniques for Currency Note Authentication
Review of Various Image Processing Techniques for Currency Note AuthenticationReview of Various Image Processing Techniques for Currency Note Authentication
Review of Various Image Processing Techniques for Currency Note Authentication
 
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
 
Counterfeit Currency Detection using Image Processing
Counterfeit Currency Detection using Image ProcessingCounterfeit Currency Detection using Image Processing
Counterfeit Currency Detection using Image Processing
 
Text and Object Recognition using Deep Learning for Visually Impaired People
Text and Object Recognition using Deep Learning for Visually Impaired PeopleText and Object Recognition using Deep Learning for Visually Impaired People
Text and Object Recognition using Deep Learning for Visually Impaired People
 
F0423134
F0423134F0423134
F0423134
 
Explaining Aluminous Ascientification Of Significance Examples Of Personal St...
Explaining Aluminous Ascientification Of Significance Examples Of Personal St...Explaining Aluminous Ascientification Of Significance Examples Of Personal St...
Explaining Aluminous Ascientification Of Significance Examples Of Personal St...
 
IRJET- Finger Gesture Recognition using Laser Line Generator and Camera
IRJET- Finger Gesture Recognition using Laser Line Generator and CameraIRJET- Finger Gesture Recognition using Laser Line Generator and Camera
IRJET- Finger Gesture Recognition using Laser Line Generator and Camera
 
Hand Segmentation for Hand Gesture Recognition
Hand Segmentation for Hand Gesture RecognitionHand Segmentation for Hand Gesture Recognition
Hand Segmentation for Hand Gesture Recognition
 
Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.
 
Performance Enhancement Of Multimodal Biometrics Using Cryptosystem
Performance Enhancement Of Multimodal Biometrics Using CryptosystemPerformance Enhancement Of Multimodal Biometrics Using Cryptosystem
Performance Enhancement Of Multimodal Biometrics Using Cryptosystem
 

Similar to An Iot Based Smart Manifold Attendance System

Analysis of student sentiment during video class with multi-layer deep learni...
Analysis of student sentiment during video class with multi-layer deep learni...Analysis of student sentiment during video class with multi-layer deep learni...
Analysis of student sentiment during video class with multi-layer deep learni...
IJECEIAES
 
IRJET- Facial Expression Recognition using GPA Analysis
IRJET-  	  Facial Expression Recognition using GPA AnalysisIRJET-  	  Facial Expression Recognition using GPA Analysis
IRJET- Facial Expression Recognition using GPA Analysis
IRJET Journal
 
IRJET- Digiyathra
IRJET-  	  DigiyathraIRJET-  	  Digiyathra
IRJET- Digiyathra
IRJET Journal
 
IRJET- Intelligent Automated Attendance System based on Facial Recognition
IRJET-  	  Intelligent Automated Attendance System based on Facial RecognitionIRJET-  	  Intelligent Automated Attendance System based on Facial Recognition
IRJET- Intelligent Automated Attendance System based on Facial Recognition
IRJET Journal
 
IRJET- Automated Attendance System using Face Recognition
IRJET-  	  Automated Attendance System using Face RecognitionIRJET-  	  Automated Attendance System using Face Recognition
IRJET- Automated Attendance System using Face Recognition
IRJET Journal
 
Real time voting system using face recognition for different expressions and ...
Real time voting system using face recognition for different expressions and ...Real time voting system using face recognition for different expressions and ...
Real time voting system using face recognition for different expressions and ...
eSAT Publishing House
 
IRJET - Emotion Recognising System-Crowd Behavior Analysis
IRJET -  	  Emotion Recognising System-Crowd Behavior AnalysisIRJET -  	  Emotion Recognising System-Crowd Behavior Analysis
IRJET - Emotion Recognising System-Crowd Behavior Analysis
IRJET 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 IoT
IRJET 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 Recognition
IRJET Journal
 
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
IRJET Journal
 
A Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net AlgorithmA Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net Algorithm
IRJET Journal
 
IRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using AndroidIRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using Android
IRJET Journal
 
Real time face recognition of video surveillance system using haar cascade c...
Real time face recognition of video surveillance system using  haar cascade c...Real time face recognition of video surveillance system using  haar cascade c...
Real time face recognition of video surveillance system using haar cascade c...
nooriasukmaningtyas
 
IRJET - Facial Recognition based Attendance System with LBPH
IRJET -  	  Facial Recognition based Attendance System with LBPHIRJET -  	  Facial Recognition based Attendance System with LBPH
IRJET - Facial Recognition based Attendance System with LBPH
IRJET Journal
 
Ck36515520
Ck36515520Ck36515520
Ck36515520
IJERA Editor
 
IRJET- An Overview on Automated Emotion Recognition System
IRJET-  	  An Overview on Automated Emotion Recognition SystemIRJET-  	  An Overview on Automated Emotion Recognition System
IRJET- An Overview on Automated Emotion Recognition System
IRJET Journal
 
Paper of Final Year Project.pdf
Paper of Final Year Project.pdfPaper of Final Year Project.pdf
Paper of Final Year Project.pdf
MuhammadAsfandyarJan1
 
A novel approach for performance parameter estimation of face recognition bas...
A novel approach for performance parameter estimation of face recognition bas...A novel approach for performance parameter estimation of face recognition bas...
A novel approach for performance parameter estimation of face recognition bas...
IJMER
 
Classroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-PiClassroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-Pi
IRJET Journal
 
Automatic Attendance Management System Using Face Recognition
Automatic Attendance Management System Using Face RecognitionAutomatic Attendance Management System Using Face Recognition
Automatic Attendance Management System Using Face Recognition
Kathryn Patel
 

Similar to An Iot Based Smart Manifold Attendance System (20)

Analysis of student sentiment during video class with multi-layer deep learni...
Analysis of student sentiment during video class with multi-layer deep learni...Analysis of student sentiment during video class with multi-layer deep learni...
Analysis of student sentiment during video class with multi-layer deep learni...
 
IRJET- Facial Expression Recognition using GPA Analysis
IRJET-  	  Facial Expression Recognition using GPA AnalysisIRJET-  	  Facial Expression Recognition using GPA Analysis
IRJET- Facial Expression Recognition using GPA Analysis
 
IRJET- Digiyathra
IRJET-  	  DigiyathraIRJET-  	  Digiyathra
IRJET- Digiyathra
 
IRJET- Intelligent Automated Attendance System based on Facial Recognition
IRJET-  	  Intelligent Automated Attendance System based on Facial RecognitionIRJET-  	  Intelligent Automated Attendance System based on Facial Recognition
IRJET- Intelligent Automated Attendance System based on Facial Recognition
 
IRJET- Automated Attendance System using Face Recognition
IRJET-  	  Automated Attendance System using Face RecognitionIRJET-  	  Automated Attendance System using Face Recognition
IRJET- Automated Attendance System using Face Recognition
 
Real time voting system using face recognition for different expressions and ...
Real time voting system using face recognition for different expressions and ...Real time voting system using face recognition for different expressions and ...
Real time voting system using face recognition for different expressions and ...
 
IRJET - Emotion Recognising System-Crowd Behavior Analysis
IRJET -  	  Emotion Recognising System-Crowd Behavior AnalysisIRJET -  	  Emotion Recognising System-Crowd Behavior Analysis
IRJET - Emotion Recognising System-Crowd Behavior Analysis
 
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- 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
 
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
 
A Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net AlgorithmA Real Time Advance Automated Attendance System using Face-Net Algorithm
A Real Time Advance Automated Attendance System using Face-Net Algorithm
 
IRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using AndroidIRJET- Free & Generic Facial Attendance System using Android
IRJET- Free & Generic Facial Attendance System using Android
 
Real time face recognition of video surveillance system using haar cascade c...
Real time face recognition of video surveillance system using  haar cascade c...Real time face recognition of video surveillance system using  haar cascade c...
Real time face recognition of video surveillance system using haar cascade c...
 
IRJET - Facial Recognition based Attendance System with LBPH
IRJET -  	  Facial Recognition based Attendance System with LBPHIRJET -  	  Facial Recognition based Attendance System with LBPH
IRJET - Facial Recognition based Attendance System with LBPH
 
Ck36515520
Ck36515520Ck36515520
Ck36515520
 
IRJET- An Overview on Automated Emotion Recognition System
IRJET-  	  An Overview on Automated Emotion Recognition SystemIRJET-  	  An Overview on Automated Emotion Recognition System
IRJET- An Overview on Automated Emotion Recognition System
 
Paper of Final Year Project.pdf
Paper of Final Year Project.pdfPaper of Final Year Project.pdf
Paper of Final Year Project.pdf
 
A novel approach for performance parameter estimation of face recognition bas...
A novel approach for performance parameter estimation of face recognition bas...A novel approach for performance parameter estimation of face recognition bas...
A novel approach for performance parameter estimation of face recognition bas...
 
Classroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-PiClassroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-Pi
 
Automatic Attendance Management System Using Face Recognition
Automatic Attendance Management System Using Face RecognitionAutomatic Attendance Management System Using Face Recognition
Automatic Attendance Management System Using Face Recognition
 

More from IJERDJOURNAL

Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...
Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...
Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...
IJERDJOURNAL
 
The development of the Islamic Heritage in Southeast Asia tradition and futur...
The development of the Islamic Heritage in Southeast Asia tradition and futur...The development of the Islamic Heritage in Southeast Asia tradition and futur...
The development of the Islamic Heritage in Southeast Asia tradition and futur...
IJERDJOURNAL
 
A Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSN
A Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSNA Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSN
A Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSN
IJERDJOURNAL
 
Human Resource Competencies: An Empirical Assessment
Human Resource Competencies: An Empirical AssessmentHuman Resource Competencies: An Empirical Assessment
Human Resource Competencies: An Empirical Assessment
IJERDJOURNAL
 
Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...
Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...
Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...
IJERDJOURNAL
 
Development of Regression Model Using Lasso And Optimisation of Process Param...
Development of Regression Model Using Lasso And Optimisation of Process Param...Development of Regression Model Using Lasso And Optimisation of Process Param...
Development of Regression Model Using Lasso And Optimisation of Process Param...
IJERDJOURNAL
 
Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...
Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...
Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...
IJERDJOURNAL
 
Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)
Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)
Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)
IJERDJOURNAL
 
Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...
Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...
Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...
IJERDJOURNAL
 
Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...
Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...
Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...
IJERDJOURNAL
 
Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...
Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...
Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...
IJERDJOURNAL
 
Analysis of failure behavior of shear connection in push-out specimen by thre...
Analysis of failure behavior of shear connection in push-out specimen by thre...Analysis of failure behavior of shear connection in push-out specimen by thre...
Analysis of failure behavior of shear connection in push-out specimen by thre...
IJERDJOURNAL
 
Discrete Time Batch Arrival Queue with Multiple Vacations
Discrete Time Batch Arrival Queue with Multiple VacationsDiscrete Time Batch Arrival Queue with Multiple Vacations
Discrete Time Batch Arrival Queue with Multiple Vacations
IJERDJOURNAL
 
Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...
Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...
Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...
IJERDJOURNAL
 
Implementing Oracle Utility-Meter Data Management For Power Consumption
Implementing Oracle Utility-Meter Data Management For Power ConsumptionImplementing Oracle Utility-Meter Data Management For Power Consumption
Implementing Oracle Utility-Meter Data Management For Power Consumption
IJERDJOURNAL
 
Business Intelligence - A Gift for Decision Maker for the Effective Decision ...
Business Intelligence - A Gift for Decision Maker for the Effective Decision ...Business Intelligence - A Gift for Decision Maker for the Effective Decision ...
Business Intelligence - A Gift for Decision Maker for the Effective Decision ...
IJERDJOURNAL
 
Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...
Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...
Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...
IJERDJOURNAL
 
Design of Synthesizable Asynchronous FIFO And Implementation on FPGA
Design of Synthesizable Asynchronous FIFO And Implementation on FPGADesign of Synthesizable Asynchronous FIFO And Implementation on FPGA
Design of Synthesizable Asynchronous FIFO And Implementation on FPGA
IJERDJOURNAL
 
Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...
Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...
Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...
IJERDJOURNAL
 
Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...
Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...
Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...
IJERDJOURNAL
 

More from IJERDJOURNAL (20)

Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...
Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...
Predictive Data Mining with Normalized Adaptive Training Method for Neural Ne...
 
The development of the Islamic Heritage in Southeast Asia tradition and futur...
The development of the Islamic Heritage in Southeast Asia tradition and futur...The development of the Islamic Heritage in Southeast Asia tradition and futur...
The development of the Islamic Heritage in Southeast Asia tradition and futur...
 
A Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSN
A Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSNA Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSN
A Novel Approach To Detect Trustworthy Nodes Using Audit Based Scheme For WSN
 
Human Resource Competencies: An Empirical Assessment
Human Resource Competencies: An Empirical AssessmentHuman Resource Competencies: An Empirical Assessment
Human Resource Competencies: An Empirical Assessment
 
Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...
Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...
Prospects and Problems of Non-Governmental Organizations in Poverty Alleviati...
 
Development of Regression Model Using Lasso And Optimisation of Process Param...
Development of Regression Model Using Lasso And Optimisation of Process Param...Development of Regression Model Using Lasso And Optimisation of Process Param...
Development of Regression Model Using Lasso And Optimisation of Process Param...
 
Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...
Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...
Use of Satellite Data for Feasibility Study And Preliminary Design Project Re...
 
Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)
Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)
Microwave Assisted Sol Gel Synthesis of Magnesium Oxide(Mgo)
 
Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...
Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...
Development of Enhanced Frequency Drive for 3-Phase Induction Motors Submitte...
 
Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...
Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...
Short-Term Load Forecasting Using ARIMA Model For Karnataka State Electrical ...
 
Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...
Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...
Optimal Pricing Policy for a Manufacturing Inventory Model with Two Productio...
 
Analysis of failure behavior of shear connection in push-out specimen by thre...
Analysis of failure behavior of shear connection in push-out specimen by thre...Analysis of failure behavior of shear connection in push-out specimen by thre...
Analysis of failure behavior of shear connection in push-out specimen by thre...
 
Discrete Time Batch Arrival Queue with Multiple Vacations
Discrete Time Batch Arrival Queue with Multiple VacationsDiscrete Time Batch Arrival Queue with Multiple Vacations
Discrete Time Batch Arrival Queue with Multiple Vacations
 
Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...
Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...
Regional Rainfall Frequency Analysis By L-Moments Approach For Madina Region,...
 
Implementing Oracle Utility-Meter Data Management For Power Consumption
Implementing Oracle Utility-Meter Data Management For Power ConsumptionImplementing Oracle Utility-Meter Data Management For Power Consumption
Implementing Oracle Utility-Meter Data Management For Power Consumption
 
Business Intelligence - A Gift for Decision Maker for the Effective Decision ...
Business Intelligence - A Gift for Decision Maker for the Effective Decision ...Business Intelligence - A Gift for Decision Maker for the Effective Decision ...
Business Intelligence - A Gift for Decision Maker for the Effective Decision ...
 
Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...
Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...
Effect of Water And Ethyl Alcohol Mixed Solvent System on the Stability of Be...
 
Design of Synthesizable Asynchronous FIFO And Implementation on FPGA
Design of Synthesizable Asynchronous FIFO And Implementation on FPGADesign of Synthesizable Asynchronous FIFO And Implementation on FPGA
Design of Synthesizable Asynchronous FIFO And Implementation on FPGA
 
Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...
Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...
Prospect and Challenges of Renewable Energy Resources Exploration, Exploitati...
 
Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...
Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...
Power Quality Disturbaces Clasification And Automatic Detection Using Wavelet...
 

Recently uploaded

power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
DuvanRamosGarzon1
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
Kamal Acharya
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
Kamal Acharya
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
abh.arya
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
ShahidSultan24
 

Recently uploaded (20)

power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
Democratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek AryaDemocratizing Fuzzing at Scale by Abhishek Arya
Democratizing Fuzzing at Scale by Abhishek Arya
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
addressing modes in computer architecture
addressing modes  in computer architectureaddressing modes  in computer architecture
addressing modes in computer architecture
 

An Iot Based Smart Manifold Attendance System

  • 1. International Journal of Engineering Research and Development e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com Volume 13, Issue 8 (August 2017), PP.52-62 52 An Iot Based Smart Manifold Attendance System * Dr.Sanjay Jain1,Syeda Sana2,Theertha Prabhakaran3,Liby Ann Baby4 1HOD, Department of ECE, New Horizon College of Engineering, Bangalore, India. 2UG Student , Department of ECE, New Horizon College of Engineering, Bangalore, India. 3UG Student , Department of ECE, New Horizon College of Engineering, Bangalore, India. 4UG Student , Department of ECE, New Horizon College of Engineering, Bangalore, India. Corresponding author: * Dr.Sanjay Jain ABSTRACT:- Attendance has been an age old procedure employed in different disciplines of educational institutions. While attendance systems have witnessed growth right from manual techniques to biometrics, plight of taking attendance is undeniable. In fingerprint based attendance monitoring, if fingers get roughed / scratched, it leads to misreading. Also for face recognition, students will have to make a queue and each one will have to wait until their face gets recognised. Our proposed system is employing “manifold attendance” that means employing passive attendance, where at a time, the attendance of multiple people can get captured. We have eliminated the need of queue system / paper-pen system of attendance, and just with a single click the attendance is not only captured, but monitored as well, that too without any human intervention. In the proposed system, creation of database and face detection is done by using the concepts of bounding box, whereas for face recognition we employ histogram equalization and matching technique. Keywords:- Bounding box, Face detection, Face recognition, Histogram, Manifold (passive) I. INTRODUCTION The traditional attendance technique involves human to human interaction (attendance slip being passed from teacher to peon) and human to computer interaction (teacher updates the attendance in the system). While a normal working day comprises of 7 to 8 hours of class, even if a minimal of 10 minutes each is devoted for attendance, it sums up to approximately 80 minutes per day. This is truly increasing the plight of the teacher. Advancements in attendance included techniques like retinal scanning, fingerprint scanning, face recognition. Smart Manifold Attendance using Real Time Face Recognition is a real world solution to the existing issues in traditional methods. This system consists of four phases - face database, face detection, face recognition and marking attendance. Image acquisition is accomplished using a camera fitted in the classroom. The system first stores the faces in the database. The faces of students are detected / located from the image captured in real time. The detected faces are then compared with those stored in the database during face recognition. If the system recognizes faces, the attendance gets marked immediately in the excel sheets. Also, we send hourly text messages to parents, of wards that are absent. Teachers‟ attendance is monitored as well. As per VTU, 52 hours need to be completed per subject and this purpose is also served in the proposed system on a MATLAB platform. II. METHODOLOGY This section discusses starting from the creation of database, face detection, recognition of faces from the captured image and performing appropriate attendance updating and monitoring without any human intrusion. The step by step procedure for implementation is as follows: Step 1: Creation of database Step 2: Capturing a classroom image in real time from a web camera Step 3: Detecting/Locating faces in the captured image Step 4: Recognising faces i.e comparing the detected faces with those present in the database. Step 5: Updating Excel sheets Step 6: Sending text messages using GSM module Step 7: Sending mail containing summary of the attendance Step 8: Updating ThingSpeak page Fig 1 shows the architecture of the manifold attendance system . An image of the classroom is captured from the camera, in our prototype the images are already fed into the system and the image is given to
  • 2. An Iot Based Smart Manifold Attendance System 53 the MATLAB environment for further processing in order to extract faces from the group picture. Face recognition is performed to determine if the student is present or absent. After which, the corresponding details are given to the GSM module where text messages are sent and attendance summary is mailed to the HOD. IOT concepts are employed to provide ease in attendance tracking. Fig 1: Proposed architecture for manifold attendance system A. Creating Database: Acquisition from Live Streaming Video It is necessary to store the images of all the students in an organization. To facilitate ease in doing so, live video acquisition is done so that snapshots are taken from a live video. The user will be first asked to enter the USN of the student like so: A. Creating Database: Acquisition from Live Streaming Video It is necessary to store the images of all the students in an organization. To facilitate ease in doing so, live video acquisition is done so that snapshots are taken from a live video. The user will be first asked to enter the USN of the student like so: Fig 2:Interface for entering USN
  • 3. An Iot Based Smart Manifold Attendance System 54 After which, the video player gets enabled .Face Detect function helps to locate the face and returns the row-column where the face begins and the face ends. Using this, a bounding box is drawn. Point Tracker stabilizes the video and provides camera motion estimation. Fig 3: Live stream Fig 4: Snapshots and cropped faces
  • 4. An Iot Based Smart Manifold Attendance System 55 Fig 5: Database created B. Image Acquisition Image acquisition in general involves the capturing or getting an image from a source. In real time implementation of smart attendance monitoring system, a webcam or a HD camera is fixed at a suitable position, create a webcam object and then use the snapshot function to acquire images from a webcam. We can acquire a single image or set up a loop to acquire multiple images and use the preview function to test the camera stream. The MATLAB GUI (Graphical User Interface) is implemented using the GUIDE option available in MATLAB. C. Face Detection Face detection is the computer technology that identifies the human faces in digital images. A human can do this easily, but a computer requires precise instructions and constraints. MATLAB provides an inbuilt function called Cascade Object Detector to locate the faces in the captured image .This inbuilt function make use of the Viola Jones algorithm that detects the eyes, nose, face in the upper portion of the body. 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. The goal is to distinguish between faces and non-faces. Skin color varies with many facts such as race, health, degree of sun tan etc. Consider an example of a captured image in which two faces are detected. The pixels that are closely related to skin pixels appear white. The pixels that have a drastic change in the pixel value compared to the previous pixels collectively appear as black. A pixel value is classified as skin pixel if its value falls within the threshold.
  • 5. An Iot Based Smart Manifold Attendance System 56 Fig 6 : Creation of Bounding Box on detected faces. Once the faces are identified in the captured image, they need to be demarcated which is employed by using the concept of bounding box. A bounding box represents the co-ordinates of the rectangular border thatencloses a digital image, It uses the co-ordinates at the initial and the final point where it recognizes the skin pixels to form diagonal and thereby draw the rectangle. Each row in the matrix of the bounding box represents a face been detected. Thus, the number of rows gives the number of faces that are located in the captured image and thereby the number of students present in each class. The faces that are pointed by bounding box (Fig 5) are cropped and fed as input for further processing.This concept is used when there is a single student in case of data base creation or multiple students in case of real time attendance monitoring. D. Face Recognition For face recognition, we employ the technique of histogram equalization. The steps involved are: 1. Consider an image as shown below, whose pixel values are represented using 3-bit data. There are 8 possible grey levels ranging from 0-7 2. Determine Pixel frequency and their respective pixel probability P(i).
  • 6. An Iot Based Smart Manifold Attendance System 57 Fig 7: Results of steps in histogram equalization and enhanced image matrix. E. Face Matching  First value of the test_processed_bin (histogram values of the detected face) is then compared with all the values of train_processed_bin (histogram values of image in the database) to determine a certain distance given by EU =  {a –b} ; where a= test_processed_bin, and b= train_processed_bin The EU values corresponding to each of the images are stored as img_bin_hist_sum which is a single columned matrix.  By using the function min, we can determine the minimum value „M‟, as well as the corresponding index „temp‟ of that value „M‟ present in a matrix. This function is used to determine the minimum EUand is stored as M. [ temp M] = min ( img_bin_hist_sum );  The bin value is used to differentiate histograms of different people. i.e. The obtained M value is divided by this bin value and rounded off to nearest positive infinity and updated. The value hence gives the folder number where the image histogram match was found.  Depending on the folder found, the first image present is selected by default and displayed as  “STUDENT NAME FACE FOUND”. F. Updating Excel Sheets Some key features of the excel sheets include:  Column A is dedicated for the list of students.  Column B is dedicated for the USN numbers of respective students.  A total of 10 classes will be taken for each of the 4 subjects from column C to L  Percentage calculation is done using the formula : (Number of classes attended / Total number of classes taken)
  • 7. An Iot Based Smart Manifold Attendance System 58 Fig 8: Excel sheet corresponding to 10 students and 10 classes G. Sending Messages Serial communication is used and appropriate port name must be included to activate it. Character „A‟ is sent to the controller which then uses Send SMS function to send the message employing the GSM module. Likewise, a unique character will be assigned for each student like „B‟,‟C‟ and so on and in case of student‟s absence, that particular character is considered, from which the students name is decoded and this will be sent to LCD for displaying. H. Sending Mail Function sendmail (recipient, subject, message, attachments) is used to mail the updated sheet to the email-id specified. We use JAVA concepts to initialize the mail sending process, SMTP and setting preferences. I. Implementation of IOT The Internet of Things (IOT) is a system of „connected things‟. The things generally comprise of an embedded operating system and an ability to communicate with the internet or with the neighbouring things. One of the key elements of a generic IOT system that bridges the various „things‟ is an IOT service. An interesting implication from the „things‟ comprising the IOT systems is that the things by themselves cannot do anything. At a bare minimum, they should have an ability to connect to other „things‟. But the real power of IOT is harnessed when the things connect to a „service‟ either directly or via other „things‟. In such systems, the service plays the role of an invisible manager by providing capabilities ranging from simple data collection and monitoring to complex data analytics. The below diagram illustrates where an IOT service fits in an IOT ecosystem. One such IOT application platform that offers a wide variety of analysis, monitoring and counteraction capabilities is „ThingSpeak‟. The channel page settings and display of attendance on ThingSpeak is shown in Fig 12.
  • 8. An Iot Based Smart Manifold Attendance System 59 III. RESULTS All This section mainly shows the experimented results of the implemented algorithm. Each steps of the algorithm is executed in the MATLAB and all the expected results are discussed below. Fig 9 shows the overview of the GUI model, the algorithm is developed in MATLAB using graphical user interface (GUI), the platform of MATLAB which enables to develop a devise without any hardware requirement. Let us consider a test case where only two students are present. The teacher enters the subject name and the class number as well, where the corresponding excel sheet is selected. By clicking on the „capture‟ ushbutton an image of classroom is captured. Fig 10 shows how the faces are detected and cropped. These faces are temporarily stored which is then compared with the faces present in the database on clicking the „Test‟ pushbutton. Here the technique of histogram matching is employed as discussed earlier where the best face is matched. The face under test, the matched face is then displayed as shown in Fig 11. Based on the faces recognised excel sheets are updated and on clicking the „Send Message‟ and „Send Mail‟ pushbuttons text messages and mail is sent respectively as shown in Fig 12. All the above discussed steps can be carried out at one stretch without any intervention with LIVE pushbutton, where each step will be executed one after another with a mentioned time span. Fig 9: Overview of GUI Fig 10: Test case considered
  • 9. An Iot Based Smart Manifold Attendance System 60 Fig 11: Dialogue box display for detected faces Fig 11: Screenshots of how text messages and mail is received
  • 10. An Iot Based Smart Manifold Attendance System 61 Fig 12: Details of channels created and display of student attendance on ThingSpeak
  • 11. An Iot Based Smart Manifold Attendance System 62 IV. CONCLUSIONS A study of image processing techniques and the existing attendance techniques was done and the MATLAB program for the manifold recognition of students in a captured classroom picture was successfully ccomplished. The attendance sheets were created using MS-Excel. The interface of LPC2148 with LCD, GSM module was done. IOT assistance was successfully provided using ThingSpeak. The program corresponding to hardware flow was written in Kiel u4, dumped on the controller using Flash magic and was successfully tested. ACKNOWLEDGMENT All work done, images shown in this paper are for educational purpose only and not for commercial purpose. REFERENCES [1]. “Performance evaluation and comparison of PCA based, face recognition methods for distorted Images”, [2]. B.Poon, M.Ashraful Amin, Hong Yan, International Journal of Machine learning and cybernetics, Volume 2, July, 2011. [3]. “Face Recognition and Verification using Histogram Equalization” by Kelsey, Ramiraz, Daniel, Hector, [4]. Postgraduate Section of Studies and Investigation Mechanical and Electrical Engineering School, National [5]. Polytechnic Institute. Av, International Journal of Scientific & Engineering Research Volume 3, Issue 12, December-2012 [6]. Face recognition based attendance management system by using embedded Linux by T Muni Reddy, V [7]. Prasad, N V Ramanaiah, IJERST, May 2015 [8]. MATLAB GUI Tutorial for Beginners-https://www.youtube.com [9]. https://www.mathworks.com/matlabcentral/answers/32137-use-video-live-stream [10]. https://thingspeak.com/pages/how_to [11]. Rectangle around the object, Bounding box – https://in.mathworks.com *Dr.Sanjay Jain. “An Iot Based Smart Manifold Attendance System.” International Journal of Engineering Research and Development, vol. 13, no. 08, 2017, pp. 52–62.