SlideShare une entreprise Scribd logo
1  sur  4
Télécharger pour lire hors ligne
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 67
Embedded System for Automatic Door Access using Face Recognition
Technique and Cloud Based Services
Saifuddin Syed1, Mitul Jain2, Pritam Dey3,Nazera Ahmed4
1,2,3,4Department of Computer Engineering, TCOER, Pune, Savitribai Phule Pune University, Pune, Maharashtra,
India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - In today’s digital world, it is important to have
safety measures for the property. Security is a significant
perspective or feature within the smart home applications in
modern times. Home automation is one among the multiple
areas where Internet of Things(IoT) technology can be
applied. IoT methods helps in collaborationofdifferentdevices
and ultimately achieving efficient home automation as one
application. It also helps in monitoring and accessing things
remotely. A typical home automation construction workflow
consists of certain stages such as execution and updating of
workflow, triggering the workflow and finally making the
system interact with the humans as well as othersystems. This
paper is an attempt to construct a smart security door system
for home automation using interdisciplinary approach by
applying image processing, implicit human-computer
interaction and cloud-based services that ensures less human
intervention and more automation.
Key Words: Home Automation, Access Control,
Automatic Door Lock, IoT, Raspberry Pi, OpenCV
libraries, Dlib libraries, Security System, Android,
Firebase Services.
1. INTRODUCTION
1.1 Project Idea
Property protection is a vital feature within the smart
home applications. The major part of any door security
systems is to distinguish the persons entering through the
door correctly. Authentication between humanbeingscanbe
easily done using face identification mechanism. An efficient
and correct home security and entry control to the doors
system that is based on face identification is important for
wide selectionofsecurityapplication.Inthefacialrecognition
approach, a given face is compared with the faces stored in
the database in order to identifytheperson.Thepurposeisto
find a face in the database, which has the highest similarity
with the given face. Detection of face in an image is more
exigent becauseofsomeunstablefeaturessuchasglassesand
beard impacting the detecting effectiveness.
In addition to this, the differentkindandanglesoflighting
generates uneven brightnesson the face,whichhasinfluence
on the detection process. Toprevailovertheaboveproblems,
the existing system used Ada Boost (Adaptive Boosting)
algorithm, implemented using HAAR classifiers for face
detection, ORB for 3D object recognition and Principal
Component Analysis for face recognition implementation.
While these implementationsweproducingbetterresults
than their predecessors, the accuracy was not upto the
expectation, and not fast enough to run on cheap camera,
required for home security purposes. Machine Learning
played an important role in finding a better solution. The
analysis of various datasets and information provided in
better techniques for implementation of Face Detection and
Recognition.
In our proposed model, finding of face is implemented
using Histogram of Oriented Gradients (HOG), isolation of
facial features using Face Landmark Estimation and facial
recognition by implementing a SVM classifier.
Finally, using Android and Cloud Services the whole
system is designed as one unit for data storage and real time
notification services.
1.2 Motivation
The motivation behind this project are:
 Most doors are controlled by persons with the
use of keys and security cards, which required
caring and security for itself.
 Replication of key and security card requiredfor
allowing multiple user accessmakingthesystem
less secure.
 Password or pattern to open the door were
alternatives but in this digital era it would be
additional burden to human memory.
 Providing a way for the owner of the house to
provide access to multiple users without
compromising the security as well as getting
updated about the activities.
1.3 Goals and Objectives
 To minimize theshortcomingofexistingsystem
and integrate remotely controlled system with
cloud-based services.
 Automatic opening and closing of door to
authorizedperson withouthumanintervention.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 68
 Centralized storage of data over the cloud to
overcome disk space issues and data integrity.
 Allow the system to be used around with
various mobile platforms.
 Real-time notification to the user using mobile
and cloud services platform.
 Lastly, a cost-effective system inordertojustify
its application in home automation.
2. SYSTEM SPECIFICATION
Sr.
No
Parameter Specification
Raspberry Pi 3 Model B
1. CPU 1.2 GHZ quad-core ARM Cortex A53
2. Memory 1 GB LPDDR2-900 SDRAM
3. Operating System RaspbianOS Jessie
4. GPU Broadcom Video Core IV @ 400 MHz
5. USB 2.0 Ports 4
6. SOC Broadcom BCM2837(roughly 50% fast than Pi 2)
7. Network 10/100 MBPS Ethernet, Wireless LAN, Bluetooth
8. Power Source 5V DC
9. GPIO 40 pins
Digital Camera
10. Sensor CMOS
11. Megapixel 20
12. Frame Rate 30 fps
13. Focal Length 3.85 mm
14. Connector USB 2.0
Servo Motor
15. Rated Output 50 W
16. Rated Torque 0.16 Nm
17. Rated Speed 3000
18. Max Speed 5000
Table - 1: Hardware Specification
Sr. No Parameter
Platform
1. Raspbian Jessie
2. Android Nougat and above
3. Firebase
Libraries
4. OpenCV 3.1.0
5. Dlib
6. Face_recognition
7. Pyrebase 3.0.27
8. Rpi.GPIO
9. Schedule 0.2.0
10. PyFCM
11.
Firebase for android SDK 15.0 and
above
12. Glide v4
Table - 2: Software Specifications
3. PROPOSED SYSTEM
The proposed model is a system accessible over
cloud. It makes use of raspberry pi over microcontrollers
providing many advantages and features. The proposed
system supports more elasticity, comfort, easily accessible
and remotely controllable. The system also attempts to
provide every possible benefit of automation, computer
vision, cloud computing and embedded systems.
The shown system architecture shows the
interconnection and the relationships between thesoftware
components and the hardware components which helps in
implementing the entire system.
Fig - 1: System Architecture
4. IMPLEMENTATION:
1. Import necessary libraries and packages
2. Set GPIO mode for Raspberry Pi
3. Set Output Pin as 7
4. Set pulse width modulation Frequency to pin 7
5. Initialize variables for video capture using OpenCV
libraries
6. Initialize arrays for face image locations
(face_locations) and face image
encodings(face_encodings)
7. Initialize frame count <- 0
8. If video capture available:
Continue
else:
Abort
endif
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 69
9. while true:
a. read captured image frame
b. resize the frame of video to ¼ size for
faster face recognition
c. store face location found in frame in
array(face_locations)
d. store face encoding (from Image
Processing: HOG, Face landmark
estimation) found in frame in
array(face_encodings)
e. Repeat step c and d for all the images
stored in internal storage for face
matching.
f. Match the face image found in the frame
with all the face encodings of all the images
stored in internal storage using SVM
Classification.
g. Monitor few number for frame to check
whether video frame image is stable
h. if image is stable:
I. scale back the face location frame
to normal size
II. display the recognized user by
surrounding the face with a
rectangle
III. display the nameoftherecognized
user by fetching from
(face_locations) array.
IV. Perform tasks for:
 Responses
 Notification
 Door opening and closing
operations
else:
continue to monitor the frame for
face detection
end if
end while
10. Clean up GPIO
11. Clean captured frames
4. RESULTS
Fig - 2: Uploading image to Firebase
Fig - 3: Firebase Database
Fig - 4: Firebase Storage
Fig - 5: Face Recognition results from different angles
Fig - 6: Mobile Notification
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 70
5. CONCLUSIONS
However, face detection is more challenging
because of some unstable characteristics, thus it very
much possible that there will be many improvements to
this current system and rather can also be replaced with
better options currently under research (eg. DNA
Verification). Also, Convolutional Neutral Networks and
Deep Learning approaches can be used for improvingthe
performance of face recognition process.
Moreover, the integration of systems and
communication between them can also be synchronized
and functioned smoothly by implementing future
advancement in cloud computing services.
The system can also be integrated with other home
devices and appliances with energy controller enabling
Home Automation.
The boon of IoT, Automation and Machine Learning
gives this subject many more implementation,
modifications and advancementtobetakenforwardwith
such future generation technologies.
REFERENCES
[1] S. Suresh, S. Sakshi, “Home monitoring and security”,
978-1-5090-5515-9/16/, IEEE, 2016
[2] N. Dickey, D. Banks, “Home Automation using Cloud
Network and Mobile Devices”,978-1-4673-1375-9/12/,
IEEE, 2012
[3] N. Dalal and B. Triggs, “Histograms oforientedgradients
for human detection,” IEEE Computer Society
Conference on Computer Vision and Pattern
Recognition, vol. 1, June 2005, pp. 886-893
[4] Hteik Htar Lwin, Aung Soe Khaing, Hla Myo Tun,
“Automatic Door Access System Using Face
Recognition”, International Journal of Scientific &
Technology Research Volume 4, Issue 06, June 2015.
[5] Das, S.R., Chita, S., Peterson, N., Shirazi, B.A.,
Bhadkamkar, M., “Home automation and security for
mobile devices,”IEEEPERCOMWorkshops,pp.141-146,
2011.
[6] Harihara Santosh Dadi, Gopala Krishna Mohan Pillutla,
Madhavi Latha Makkena, “Face Recognition and Human
Tracking Using GMM, HOG and SVM in Surveillance
Videos”Ann.Data.Sci.DOI10.1007/s40745-017-0123-2
[7] Kobayashi T, Hidaka A, Kurita T (2008) “Selection of
histograms of oriented gradientsfeaturesforpedestrian
detection.” In: ICONIP. Springer, pp 598– 607, 2007
[8] Ningthoujam Sunita Devi, K. Hemachandran “Face
Recognition Using Principal Component Analysis”
(IJCSIT) International Journal of Computer Science and
Information Technologies, Vol. 5 (5), 2014, 6491-6496
[9] R. Manjunatha, Dr. R. Nagaraja. “Home Security System
and Door Access Control Based on Face Recognition”
International Research Journal of Engineering and
Technology (IRJET), 2017
[10] Vahid Kazemi, Josephine Sullivan “One MillisecondFace
Alignment with an Ensemble of Regression Trees” The
IEEE Conference on Computer Vision and Pattern
Recognition (CVPR), 2014.
[11] Raspberry Pi Libraries and Documentation
http://www.rasberry.org/downloadresources/
[12] OpenCV Libraries and Documentation
https://docs.opencv.org/3.3.1/
[13] Dlib Libraries and Documentations
http://dlib.net/
BIOGRAPHIES
Saifuddin Syed
Bachelor in Computer Engg.
Currently working on Full Stack
Development using Data Science,
having interests in AI and
Automation.
Mitul Jain
Bachelor in Computer Engg.
Currently working on Digital
Marketing Techniques, with an
interest in IoT, Data Mining and
Machine Learning.
Pritam Dey
Bachelor in Computer Engg.
Working on AndroidDevelopment,
interested in Game Design and
Development.
Nazera Anjum Ahmed
Bachelor in Computer Engg.
Currently working on UI and UX.

Contenu connexe

Tendances

Automated PCB identification and defect-detection system (APIDS)
Automated PCB identification and defect-detection system (APIDS)Automated PCB identification and defect-detection system (APIDS)
Automated PCB identification and defect-detection system (APIDS)IJECEIAES
 
IRJET - Face Detection and Recognition System
IRJET -  	  Face Detection and Recognition SystemIRJET -  	  Face Detection and Recognition System
IRJET - Face Detection and Recognition SystemIRJET Journal
 
IRJET- Secure Voting System using Aadhar and Biometrics
IRJET- Secure Voting System using Aadhar and BiometricsIRJET- Secure Voting System using Aadhar and Biometrics
IRJET- Secure Voting System using Aadhar and BiometricsIRJET 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
 
IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...
IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...
IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...IRJET Journal
 
IoT based attendance system
IoT based attendance systemIoT based attendance system
IoT based attendance systemIRJET Journal
 
IRJET- Drive Assistance an Android Application for Drowsiness Detection
IRJET- Drive Assistance an Android Application for Drowsiness DetectionIRJET- Drive Assistance an Android Application for Drowsiness Detection
IRJET- Drive Assistance an Android Application for Drowsiness DetectionIRJET Journal
 
IRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe ModelIRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe ModelIRJET Journal
 
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...YogeshIJTSRD
 
IRJET - Door Lock Control using Wireless Biometric
IRJET - Door Lock Control using Wireless BiometricIRJET - Door Lock Control using Wireless Biometric
IRJET - Door Lock Control using Wireless BiometricIRJET Journal
 
IoT for wheel alignment monitoring system
IoT for wheel alignment monitoring systemIoT for wheel alignment monitoring system
IoT for wheel alignment monitoring systemIJECEIAES
 
IRJET - TTL: Tap to Login
IRJET - TTL: Tap to LoginIRJET - TTL: Tap to Login
IRJET - TTL: Tap to LoginIRJET Journal
 
Real time drowsy driver detection
Real time drowsy driver detectionReal time drowsy driver detection
Real time drowsy driver detectioncsandit
 
Security for Identity Based Identification using Water Marking and Visual Cry...
Security for Identity Based Identification using Water Marking and Visual Cry...Security for Identity Based Identification using Water Marking and Visual Cry...
Security for Identity Based Identification using Water Marking and Visual Cry...IRJET Journal
 
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET Journal
 
IRJET- Face Recognition based Attendance System using Raspberry Pi
IRJET- Face Recognition based Attendance System using Raspberry PiIRJET- Face Recognition based Attendance System using Raspberry Pi
IRJET- Face Recognition based Attendance System using Raspberry PiIRJET Journal
 
Rahuls final ppt
Rahuls final pptRahuls final ppt
Rahuls final pptRahul K.N
 
IRJET- Applications of Object Detection System
IRJET-  	  Applications of Object Detection SystemIRJET-  	  Applications of Object Detection System
IRJET- Applications of Object Detection SystemIRJET Journal
 
IRJET- Fish Recognition and Detection Based on Deep Learning
IRJET-  	  Fish Recognition and Detection Based on Deep LearningIRJET-  	  Fish Recognition and Detection Based on Deep Learning
IRJET- Fish Recognition and Detection Based on Deep LearningIRJET Journal
 

Tendances (20)

Automated PCB identification and defect-detection system (APIDS)
Automated PCB identification and defect-detection system (APIDS)Automated PCB identification and defect-detection system (APIDS)
Automated PCB identification and defect-detection system (APIDS)
 
C6524029320
C6524029320C6524029320
C6524029320
 
IRJET - Face Detection and Recognition System
IRJET -  	  Face Detection and Recognition SystemIRJET -  	  Face Detection and Recognition System
IRJET - Face Detection and Recognition System
 
IRJET- Secure Voting System using Aadhar and Biometrics
IRJET- Secure Voting System using Aadhar and BiometricsIRJET- Secure Voting System using Aadhar and Biometrics
IRJET- Secure Voting System using Aadhar and Biometrics
 
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
 
IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...
IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...
IRJET- Digital Image Processing based Vote Polling using Mat Lab and Cryptogr...
 
IoT based attendance system
IoT based attendance systemIoT based attendance system
IoT based attendance system
 
IRJET- Drive Assistance an Android Application for Drowsiness Detection
IRJET- Drive Assistance an Android Application for Drowsiness DetectionIRJET- Drive Assistance an Android Application for Drowsiness Detection
IRJET- Drive Assistance an Android Application for Drowsiness Detection
 
IRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe ModelIRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe Model
 
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
 
IRJET - Door Lock Control using Wireless Biometric
IRJET - Door Lock Control using Wireless BiometricIRJET - Door Lock Control using Wireless Biometric
IRJET - Door Lock Control using Wireless Biometric
 
IoT for wheel alignment monitoring system
IoT for wheel alignment monitoring systemIoT for wheel alignment monitoring system
IoT for wheel alignment monitoring system
 
IRJET - TTL: Tap to Login
IRJET - TTL: Tap to LoginIRJET - TTL: Tap to Login
IRJET - TTL: Tap to Login
 
Real time drowsy driver detection
Real time drowsy driver detectionReal time drowsy driver detection
Real time drowsy driver detection
 
Security for Identity Based Identification using Water Marking and Visual Cry...
Security for Identity Based Identification using Water Marking and Visual Cry...Security for Identity Based Identification using Water Marking and Visual Cry...
Security for Identity Based Identification using Water Marking and Visual Cry...
 
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
 
IRJET- Face Recognition based Attendance System using Raspberry Pi
IRJET- Face Recognition based Attendance System using Raspberry PiIRJET- Face Recognition based Attendance System using Raspberry Pi
IRJET- Face Recognition based Attendance System using Raspberry Pi
 
Rahuls final ppt
Rahuls final pptRahuls final ppt
Rahuls final ppt
 
IRJET- Applications of Object Detection System
IRJET-  	  Applications of Object Detection SystemIRJET-  	  Applications of Object Detection System
IRJET- Applications of Object Detection System
 
IRJET- Fish Recognition and Detection Based on Deep Learning
IRJET-  	  Fish Recognition and Detection Based on Deep LearningIRJET-  	  Fish Recognition and Detection Based on Deep Learning
IRJET- Fish Recognition and Detection Based on Deep Learning
 

Similaire à IRJET- Embedded System for Automatic Door Access using Face Recognition Technique and Cloud Based Services

Face Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock SystemFace Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock SystemIRJET Journal
 
IRJET- Optimization of Surveillance Camera for Low Cost Storage Device
IRJET- Optimization of Surveillance Camera for Low Cost Storage DeviceIRJET- Optimization of Surveillance Camera for Low Cost Storage Device
IRJET- Optimization of Surveillance Camera for Low Cost Storage DeviceIRJET Journal
 
Comparative Study on Various System Based on Raspberry-Pi Technology
Comparative Study on Various System Based on Raspberry-Pi TechnologyComparative Study on Various System Based on Raspberry-Pi Technology
Comparative Study on Various System Based on Raspberry-Pi TechnologyIRJET Journal
 
AUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEM
AUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEMAUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEM
AUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEMIRJET Journal
 
Person Acquisition and Identification Tool
Person Acquisition and Identification ToolPerson Acquisition and Identification Tool
Person Acquisition and Identification ToolIRJET Journal
 
AUTOMATIC NUMBERPLATE RECOGNITION
AUTOMATIC NUMBERPLATE RECOGNITIONAUTOMATIC NUMBERPLATE RECOGNITION
AUTOMATIC NUMBERPLATE RECOGNITIONIRJET Journal
 
Survey of ‘Nivritti’: survey of face recognition technologies/methods
Survey of ‘Nivritti’: survey of face recognition technologies/methodsSurvey of ‘Nivritti’: survey of face recognition technologies/methods
Survey of ‘Nivritti’: survey of face recognition technologies/methodsIRJET Journal
 
IRJET- Biometric Attendance Management System using Raspberry Pi
IRJET- Biometric Attendance Management System using Raspberry PiIRJET- Biometric Attendance Management System using Raspberry Pi
IRJET- Biometric Attendance Management System using Raspberry PiIRJET Journal
 
Automated attendance system using Face recognition
Automated attendance system using Face recognitionAutomated attendance system using Face recognition
Automated attendance system using Face recognitionIRJET Journal
 
Automated Attendance Management System
Automated Attendance Management SystemAutomated Attendance Management System
Automated Attendance Management SystemIRJET Journal
 
A VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITION
A VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITIONA VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITION
A VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITIONIRJET Journal
 
IRJET- Interactive Smart Mirror
IRJET-  	  Interactive Smart MirrorIRJET-  	  Interactive Smart Mirror
IRJET- Interactive Smart MirrorIRJET Journal
 
IRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for AirportIRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for AirportIRJET Journal
 
IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)
IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)
IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)IRJET Journal
 
Basic Office Administration
Basic Office AdministrationBasic Office Administration
Basic Office AdministrationIRJET Journal
 
Fingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOTFingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOTIRJET Journal
 
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHMPOTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHMIRJET 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- Share Market Prediction using Deep Learning Approach
IRJET- Share Market Prediction using Deep Learning ApproachIRJET- Share Market Prediction using Deep Learning Approach
IRJET- Share Market Prediction using Deep Learning ApproachIRJET Journal
 
IRJET- Object Detection and Recognition using Single Shot Multi-Box Detector
IRJET- Object Detection and Recognition using Single Shot Multi-Box DetectorIRJET- Object Detection and Recognition using Single Shot Multi-Box Detector
IRJET- Object Detection and Recognition using Single Shot Multi-Box DetectorIRJET Journal
 

Similaire à IRJET- Embedded System for Automatic Door Access using Face Recognition Technique and Cloud Based Services (20)

Face Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock SystemFace Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock System
 
IRJET- Optimization of Surveillance Camera for Low Cost Storage Device
IRJET- Optimization of Surveillance Camera for Low Cost Storage DeviceIRJET- Optimization of Surveillance Camera for Low Cost Storage Device
IRJET- Optimization of Surveillance Camera for Low Cost Storage Device
 
Comparative Study on Various System Based on Raspberry-Pi Technology
Comparative Study on Various System Based on Raspberry-Pi TechnologyComparative Study on Various System Based on Raspberry-Pi Technology
Comparative Study on Various System Based on Raspberry-Pi Technology
 
AUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEM
AUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEMAUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEM
AUTOMATIC APPEARANCE MASK AND BODY TEMPERATURE FINDING SYSTEM
 
Person Acquisition and Identification Tool
Person Acquisition and Identification ToolPerson Acquisition and Identification Tool
Person Acquisition and Identification Tool
 
AUTOMATIC NUMBERPLATE RECOGNITION
AUTOMATIC NUMBERPLATE RECOGNITIONAUTOMATIC NUMBERPLATE RECOGNITION
AUTOMATIC NUMBERPLATE RECOGNITION
 
Survey of ‘Nivritti’: survey of face recognition technologies/methods
Survey of ‘Nivritti’: survey of face recognition technologies/methodsSurvey of ‘Nivritti’: survey of face recognition technologies/methods
Survey of ‘Nivritti’: survey of face recognition technologies/methods
 
IRJET- Biometric Attendance Management System using Raspberry Pi
IRJET- Biometric Attendance Management System using Raspberry PiIRJET- Biometric Attendance Management System using Raspberry Pi
IRJET- Biometric Attendance Management System using Raspberry Pi
 
Automated attendance system using Face recognition
Automated attendance system using Face recognitionAutomated attendance system using Face recognition
Automated attendance system using Face recognition
 
Automated Attendance Management System
Automated Attendance Management SystemAutomated Attendance Management System
Automated Attendance Management System
 
A VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITION
A VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITIONA VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITION
A VISUAL ATTENDANCE SYSTEM USING FACE RECOGNITION
 
IRJET- Interactive Smart Mirror
IRJET-  	  Interactive Smart MirrorIRJET-  	  Interactive Smart Mirror
IRJET- Interactive Smart Mirror
 
IRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for AirportIRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for Airport
 
IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)
IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)
IMPLEMENTATION OF IDS (INTRUDER DETECTION SYSTEM)
 
Basic Office Administration
Basic Office AdministrationBasic Office Administration
Basic Office Administration
 
Fingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOTFingerprint Based Attendance System by IOT
Fingerprint Based Attendance System by IOT
 
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHMPOTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
POTHOLE DETECTION SYSTEM USING YOLO v4 ALGORITHM
 
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- Share Market Prediction using Deep Learning Approach
IRJET- Share Market Prediction using Deep Learning ApproachIRJET- Share Market Prediction using Deep Learning Approach
IRJET- Share Market Prediction using Deep Learning Approach
 
IRJET- Object Detection and Recognition using Single Shot Multi-Box Detector
IRJET- Object Detection and Recognition using Single Shot Multi-Box DetectorIRJET- Object Detection and Recognition using Single Shot Multi-Box Detector
IRJET- Object Detection and Recognition using Single Shot Multi-Box Detector
 

Plus de 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
 

Plus de 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...
 

Dernier

UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
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
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesPrabhanshu Chaturvedi
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
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
 
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
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGSIVASHANKAR N
 

Dernier (20)

UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
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
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
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
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
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...
 
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...
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
 

IRJET- Embedded System for Automatic Door Access using Face Recognition Technique and Cloud Based Services

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 67 Embedded System for Automatic Door Access using Face Recognition Technique and Cloud Based Services Saifuddin Syed1, Mitul Jain2, Pritam Dey3,Nazera Ahmed4 1,2,3,4Department of Computer Engineering, TCOER, Pune, Savitribai Phule Pune University, Pune, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - In today’s digital world, it is important to have safety measures for the property. Security is a significant perspective or feature within the smart home applications in modern times. Home automation is one among the multiple areas where Internet of Things(IoT) technology can be applied. IoT methods helps in collaborationofdifferentdevices and ultimately achieving efficient home automation as one application. It also helps in monitoring and accessing things remotely. A typical home automation construction workflow consists of certain stages such as execution and updating of workflow, triggering the workflow and finally making the system interact with the humans as well as othersystems. This paper is an attempt to construct a smart security door system for home automation using interdisciplinary approach by applying image processing, implicit human-computer interaction and cloud-based services that ensures less human intervention and more automation. Key Words: Home Automation, Access Control, Automatic Door Lock, IoT, Raspberry Pi, OpenCV libraries, Dlib libraries, Security System, Android, Firebase Services. 1. INTRODUCTION 1.1 Project Idea Property protection is a vital feature within the smart home applications. The major part of any door security systems is to distinguish the persons entering through the door correctly. Authentication between humanbeingscanbe easily done using face identification mechanism. An efficient and correct home security and entry control to the doors system that is based on face identification is important for wide selectionofsecurityapplication.Inthefacialrecognition approach, a given face is compared with the faces stored in the database in order to identifytheperson.Thepurposeisto find a face in the database, which has the highest similarity with the given face. Detection of face in an image is more exigent becauseofsomeunstablefeaturessuchasglassesand beard impacting the detecting effectiveness. In addition to this, the differentkindandanglesoflighting generates uneven brightnesson the face,whichhasinfluence on the detection process. Toprevailovertheaboveproblems, the existing system used Ada Boost (Adaptive Boosting) algorithm, implemented using HAAR classifiers for face detection, ORB for 3D object recognition and Principal Component Analysis for face recognition implementation. While these implementationsweproducingbetterresults than their predecessors, the accuracy was not upto the expectation, and not fast enough to run on cheap camera, required for home security purposes. Machine Learning played an important role in finding a better solution. The analysis of various datasets and information provided in better techniques for implementation of Face Detection and Recognition. In our proposed model, finding of face is implemented using Histogram of Oriented Gradients (HOG), isolation of facial features using Face Landmark Estimation and facial recognition by implementing a SVM classifier. Finally, using Android and Cloud Services the whole system is designed as one unit for data storage and real time notification services. 1.2 Motivation The motivation behind this project are:  Most doors are controlled by persons with the use of keys and security cards, which required caring and security for itself.  Replication of key and security card requiredfor allowing multiple user accessmakingthesystem less secure.  Password or pattern to open the door were alternatives but in this digital era it would be additional burden to human memory.  Providing a way for the owner of the house to provide access to multiple users without compromising the security as well as getting updated about the activities. 1.3 Goals and Objectives  To minimize theshortcomingofexistingsystem and integrate remotely controlled system with cloud-based services.  Automatic opening and closing of door to authorizedperson withouthumanintervention.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 68  Centralized storage of data over the cloud to overcome disk space issues and data integrity.  Allow the system to be used around with various mobile platforms.  Real-time notification to the user using mobile and cloud services platform.  Lastly, a cost-effective system inordertojustify its application in home automation. 2. SYSTEM SPECIFICATION Sr. No Parameter Specification Raspberry Pi 3 Model B 1. CPU 1.2 GHZ quad-core ARM Cortex A53 2. Memory 1 GB LPDDR2-900 SDRAM 3. Operating System RaspbianOS Jessie 4. GPU Broadcom Video Core IV @ 400 MHz 5. USB 2.0 Ports 4 6. SOC Broadcom BCM2837(roughly 50% fast than Pi 2) 7. Network 10/100 MBPS Ethernet, Wireless LAN, Bluetooth 8. Power Source 5V DC 9. GPIO 40 pins Digital Camera 10. Sensor CMOS 11. Megapixel 20 12. Frame Rate 30 fps 13. Focal Length 3.85 mm 14. Connector USB 2.0 Servo Motor 15. Rated Output 50 W 16. Rated Torque 0.16 Nm 17. Rated Speed 3000 18. Max Speed 5000 Table - 1: Hardware Specification Sr. No Parameter Platform 1. Raspbian Jessie 2. Android Nougat and above 3. Firebase Libraries 4. OpenCV 3.1.0 5. Dlib 6. Face_recognition 7. Pyrebase 3.0.27 8. Rpi.GPIO 9. Schedule 0.2.0 10. PyFCM 11. Firebase for android SDK 15.0 and above 12. Glide v4 Table - 2: Software Specifications 3. PROPOSED SYSTEM The proposed model is a system accessible over cloud. It makes use of raspberry pi over microcontrollers providing many advantages and features. The proposed system supports more elasticity, comfort, easily accessible and remotely controllable. The system also attempts to provide every possible benefit of automation, computer vision, cloud computing and embedded systems. The shown system architecture shows the interconnection and the relationships between thesoftware components and the hardware components which helps in implementing the entire system. Fig - 1: System Architecture 4. IMPLEMENTATION: 1. Import necessary libraries and packages 2. Set GPIO mode for Raspberry Pi 3. Set Output Pin as 7 4. Set pulse width modulation Frequency to pin 7 5. Initialize variables for video capture using OpenCV libraries 6. Initialize arrays for face image locations (face_locations) and face image encodings(face_encodings) 7. Initialize frame count <- 0 8. If video capture available: Continue else: Abort endif
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 69 9. while true: a. read captured image frame b. resize the frame of video to ¼ size for faster face recognition c. store face location found in frame in array(face_locations) d. store face encoding (from Image Processing: HOG, Face landmark estimation) found in frame in array(face_encodings) e. Repeat step c and d for all the images stored in internal storage for face matching. f. Match the face image found in the frame with all the face encodings of all the images stored in internal storage using SVM Classification. g. Monitor few number for frame to check whether video frame image is stable h. if image is stable: I. scale back the face location frame to normal size II. display the recognized user by surrounding the face with a rectangle III. display the nameoftherecognized user by fetching from (face_locations) array. IV. Perform tasks for:  Responses  Notification  Door opening and closing operations else: continue to monitor the frame for face detection end if end while 10. Clean up GPIO 11. Clean captured frames 4. RESULTS Fig - 2: Uploading image to Firebase Fig - 3: Firebase Database Fig - 4: Firebase Storage Fig - 5: Face Recognition results from different angles Fig - 6: Mobile Notification
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 70 5. CONCLUSIONS However, face detection is more challenging because of some unstable characteristics, thus it very much possible that there will be many improvements to this current system and rather can also be replaced with better options currently under research (eg. DNA Verification). Also, Convolutional Neutral Networks and Deep Learning approaches can be used for improvingthe performance of face recognition process. Moreover, the integration of systems and communication between them can also be synchronized and functioned smoothly by implementing future advancement in cloud computing services. The system can also be integrated with other home devices and appliances with energy controller enabling Home Automation. The boon of IoT, Automation and Machine Learning gives this subject many more implementation, modifications and advancementtobetakenforwardwith such future generation technologies. REFERENCES [1] S. Suresh, S. Sakshi, “Home monitoring and security”, 978-1-5090-5515-9/16/, IEEE, 2016 [2] N. Dickey, D. Banks, “Home Automation using Cloud Network and Mobile Devices”,978-1-4673-1375-9/12/, IEEE, 2012 [3] N. Dalal and B. Triggs, “Histograms oforientedgradients for human detection,” IEEE Computer Society Conference on Computer Vision and Pattern Recognition, vol. 1, June 2005, pp. 886-893 [4] Hteik Htar Lwin, Aung Soe Khaing, Hla Myo Tun, “Automatic Door Access System Using Face Recognition”, International Journal of Scientific & Technology Research Volume 4, Issue 06, June 2015. [5] Das, S.R., Chita, S., Peterson, N., Shirazi, B.A., Bhadkamkar, M., “Home automation and security for mobile devices,”IEEEPERCOMWorkshops,pp.141-146, 2011. [6] Harihara Santosh Dadi, Gopala Krishna Mohan Pillutla, Madhavi Latha Makkena, “Face Recognition and Human Tracking Using GMM, HOG and SVM in Surveillance Videos”Ann.Data.Sci.DOI10.1007/s40745-017-0123-2 [7] Kobayashi T, Hidaka A, Kurita T (2008) “Selection of histograms of oriented gradientsfeaturesforpedestrian detection.” In: ICONIP. Springer, pp 598– 607, 2007 [8] Ningthoujam Sunita Devi, K. Hemachandran “Face Recognition Using Principal Component Analysis” (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 5 (5), 2014, 6491-6496 [9] R. Manjunatha, Dr. R. Nagaraja. “Home Security System and Door Access Control Based on Face Recognition” International Research Journal of Engineering and Technology (IRJET), 2017 [10] Vahid Kazemi, Josephine Sullivan “One MillisecondFace Alignment with an Ensemble of Regression Trees” The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2014. [11] Raspberry Pi Libraries and Documentation http://www.rasberry.org/downloadresources/ [12] OpenCV Libraries and Documentation https://docs.opencv.org/3.3.1/ [13] Dlib Libraries and Documentations http://dlib.net/ BIOGRAPHIES Saifuddin Syed Bachelor in Computer Engg. Currently working on Full Stack Development using Data Science, having interests in AI and Automation. Mitul Jain Bachelor in Computer Engg. Currently working on Digital Marketing Techniques, with an interest in IoT, Data Mining and Machine Learning. Pritam Dey Bachelor in Computer Engg. Working on AndroidDevelopment, interested in Game Design and Development. Nazera Anjum Ahmed Bachelor in Computer Engg. Currently working on UI and UX.