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: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2070
ROBUST VISUAL ANALYSIS OF EYE STATE
Mr. Aaditya Acharya1, Ms. Apurva Tiwari2, Mr. Brijendra Mehra3, Mr. Deepak Motiani4, Mr.
Vivek Sharma5
1,2,3,4B.Tech Student, Department of EE, Swami Keshvanand Institute of Technology, Management and Gramothan
5Assistant Professor, Department of EE, Swami Keshvanand Institute of Technology, Management and Gramothan,
Jaipur, Rajasthan, India
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - In this system, we proposed to reduce the number
of accidents caused by driver fatigue and thus improve road
safety. This system treats the automatic detection of driver
drowsiness based on visual information and artificial
intelligence. We locate, track and analyze both the driver face
and eyes to measure PERCLOS(percentageofeyeclosure) with
SoftMax for neural transfer function. Driver’s fatigue is one of
the major causes of traffic accidents, particularlyfordriversof
large vehicles (such as buses and heavy trucks) due to
prolonged driving periods and boredom in occupied
conditions.
Key Words: PERCLOS, SoftMax, artificial intelligence, driver
fatigue, driver drowsiness.
1. INTRODUCTION
The increasing number of traffic accidents due to a
diminished driver’s vigilance level has become a serious
problem for society. Statistics show that20%ofall thetraffic
accidents are due to drivers with a diminished vigilance
level. Furthermore, accidents related to driver hypo-
vigilance are more serious than other types of accidents,
since sleepy drivers often do not take correct action prior to
a collision. For this reason, developing systems for
monitoring driver’s level of vigilance and alertingthedriver,
when he is drowsy and not paying adequate attention to the
road, is essential to prevent accidents. The prevention of
such accidents is a major focus of effort in the field of active
safety research. People in fatigue show some visual
behaviors easily observable from changes in their facial
features like eyes, head, mouth and face. Computer vision
can be a natural and nonintrusive technique to monitor
driver’s vigilance. Faces as the primary part of human
communication have been a research target in computer
vision for a long time. The driver fatigue detection is
considered as one of the most prospective commercial
applications of automatic facial expression recognition.
Automatic recognition (or analysis) of facial expression
consists of three levels of tasks: face detection, facial
expression information extraction, and expression
classification. In thesetasks,theinformation extractionis the
main issue for the feature based facial expression
recognition from an image sequence. It involves detection,
identification and tracking facial feature points under
different illuminations, face orientations and facial
expressions.
2. RELATED WORKS
Some works have already been done in this field which is as
follows:
[1]Automatic Detection of Driver Fatigue Using Driving
Operation Information for Transportation Safety [2] Bus
Driver Fatigue and Stress Issues Study [3] Potentialcausesof
driver fatigue: a study on transit bus 2 operators in Florida
[4] Bus Driver: Factor that influence Behavior [5]Fatigue
Factors Affecting Metropolitan Bus Drivers: A Qualitative
Investigation.[6]OccupationalHealthHazards:AStudyofBus
Drivers [7]Bhowmick et Kumar [6] usetheOtsuthresholding
[7] to extract face region. The localization of the eye is done
by locating facial landmarks such as eyebrow and possible
face center. Morphological operation and Kmeans is used for
accurate eye segmentation. Then aset of shape features are
calculated and trained using non-linear SVM to get the status
of the eye.
Tianet Qin [9] builds a system that checks the driver eye
states. Their system uses the Cb and Cr components of the
YCbCr color space. This systemlocatesthefacewithavertical
projection function, and the eyes withahorizontalprojection
function. Once the eyes are located the system calculates the
eyes states using a function of complexity.
3. THE PROPOSED SYSTEM
The proposed system is a driver face monitoringsystemthat
can detect driver hypo vigilance (both fatigue and
distraction) by processing of eye and face regions.
After image acquisition, face detection is the first stage of
processing. Then, symptoms of hypo vigilance are extracted
from face image. However, an explicit eye detection stage is
not used to determine the eye in the face, but some of
important symptoms related toeyeregion(top-halfsegment
of the face) are extracted reforming the face detection
algorithm for all frames is computationally complex.
Therefore, after face detection in the first frame, face
tracking algorithms are used to track driver face in the next
frames unless the face is lost.
(A) Eye And Mouth Detection
The first step is the detection of the eye. For the eye
detection we are using the Euclidian distancealgorithm.The
distance is computed using the following formula:
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2071
The library contains both procedures and functions to
calculate similarity between sets of data.Thefunctionisbest
used when calculating the similarity betweensmall numbers
of sets. The procedures parallelize the computation and are
therefore more appropriate for computing similarities on
bigger datasets.
Euclidean similarity is only calculated over non-NULL
dimensions. When calling the function, we should provide
lists that contain the overlapping items. For the face
detection we are using the dlib library. The dlib libraryships
with a Histogram of Oriented Gradients-based face detector
along with a predictor. The facial landmarks produced by
dlib are an indexable list, as I describe here:
Fig: Visualizing the 68 facial landmark coordinates
After detection of face using the dlib library and extracting
the eye part then the distance between the eye led is
calculated and if the computed value is less than the
threshold value then a alarm is given.
Similarly for mouth if the amountofmouthopenedisgreater
than the threshold value then alarm is given.
(B)Out of Frame Detection
In this segment if the driver’s eye is not on the road then a
alarm will be given. The out of frame detection is based on
the fact that if within the frame the face is detected using the
face detection algorithm then no alarm or elsethere will bea
alarm given. For the detection of the face we are using the
dlib library and to extract the facial landmark imutils library
is utilized.
4. RESULT AND TEST CASES
We have performed the following test cases:
Test
case Id
Test case Test case I/P Actual Result Expected Result Test case
criteria(P/F)
001 Camera is
working
properly
Execute the
project and
check if camera
is working
Camera starts
as project
runs
Camera should
start as project
runs
P
002 Check if video is
not blur
Execute the
code and check
if video is clear
Video is not
blur
Video should not
be blur it should
be clear
P
003 Check by
detection of
drowsiness
alarm is
generated or not
Camera detects
if the driver is
sleepy
If driver is
sleepy alarm
generates
If driver is sleepy
alarm should be
generated
P
004 Check if alarm
generated is
audible to the
user
Alarm is
generated
when
drowsiness is
detected by the
system
Alarm is
audible to the
user
Alarm should be
audible to the
user
P
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2072
005 Check if alarm is
generated
quickly or it
takes time when
the system
detects the
drowsiness of
the driver
Close your eyes
in front of the
system
Alarm is
generated
quickly and
do not takes
time as the
system
detects the
drowsiness of
the driver
Alarm should be
generated
quickly and not
take time as the
system detects
the drowsiness
of the driver
P
Fig1: Eye Detection and mouth detection
Fig2: Out of frame detection
5. CONCLUSION
The increasing number of traffic accidents due to a
diminished driver’s vigilance level has become a serious
problem for society. Statistics show that20%ofall thetraffic
accidents are due to drivers with a diminished vigilance
level. Furthermore, accidents related to driver hypo-
vigilance are more serious than other types of accidents,
since sleepy drivers often do not take correct action prior to
a collision. For this reason, developing systems for
monitoring driver’s level of vigilance and alertingthedriver,
when he is drowsy and not paying adequate attention to the
road, is essential to prevent accidents.
6. REFRENCES
1. Mandal, Bappaditya, LiyuanLi,GangSamWang,and
JieLin."Towards detection of bus driver fatigue
based on robust visual analysis of eye state." IEEE
Transactionson Intelligent Transportation Systems
18, no. 3 (2016): 545-557.
2. Detecting Pedestrians Using Patterns ofMotionand
Appearance Paul Viola Michael J.JonesDaniel Snow.
2003 IEEE.
3. Ji Q., Yang X.: Real-time eye, gaze, and face pose
tracking for monitoring driver vigilance. Real-Time
Imaging. 8(5):357-77(2002)
4. Kohji Murata, Etsunori Fujita, Shigeyuki Kojima,
Shinitirou Maeda, Yumi Ogura, Tsutomu Kamei,
Toshio Tsuji.
5. A. Malla, P. Davidson, P. Bones, R. Green and R.
Jones, "Automated Video-based Measurement of
Eye Closure for DetectingBehavioral Microsleep",in
32nd Annual International Conference of the IEEE,
Buenos Aires, Argentina, 2010.
6. S. Vitabile, A. Paola and F. Sorbello, "Bright Pupil
Detection in an Embedded, Real-time Drowsiness
Monitoring System", in 24th IEEE International
Conference on Advanced Information Networking
and Applications, 2010.
7. T. Hong, H. Qin and Q. Sun, "An Improved Real Time
Eye State Identification System in Driver
Drowsiness Detection", in proceeding of the IEEE
International Conference on Control and
Automation, Guangzhou, CHINA, 2007.
8. Z. Tian et H. Qin, "Real-time Driver's Eye State
Detection", in Proceedings of the IEEEInternational
Conference on Vehicular Electronics and Safety,
October 2005.
9. OpenCV. Open Source Computer Vision Library
Reference Manual, 2001.
10. M. Saradadevi, P. Bajaj, "Driver fatigue detection
using mouth and yawning analysis", Int. J. Comput.
Sci. Netw. Secur. vol. 8, pp. 183-188, Jun. 2008.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2073
7. BIOGRAPHIES
AADITYA ACHARYA
(B.Tech student, SKIT Jaipur)
S-11 Vivek Vihar New Sanganeer
Road, Sodala, Jaipur (Raj.) 302019,
India
APURVA TIWARI
(B.Tech student, SKIT Jaipur)
E3 402 Mahalakshmipuram Baran
Road, Kota (Raj.)324001, India
BRIJENDRA MEHRA
(B.Tech student, SKIT Jaipur)
B5 Keshavpura, Near ghas Bheru
Vatika, Kota
(Raj.)324009,India
DEEPAK MOTIANI
(B.Tech student, SKIT Jaipur)
157, Balaji nagar, Makarwali Road,
Vaishali nagar, Ajamer (Raj.)
305001, India
VIVEK SHARMA
(Assistant professor, SKIT Jaipur)
354 Vivek Vihar New Sanganeer
Road, Sodala, Jaipur (Raj.)302019,
India

Contenu connexe

Tendances

Eye tracking and detection by using fuzzy template matching and parameter bas...
Eye tracking and detection by using fuzzy template matching and parameter bas...Eye tracking and detection by using fuzzy template matching and parameter bas...
Eye tracking and detection by using fuzzy template matching and parameter bas...
IAEME Publication
 
Fighting Accident Using Eye Detection forSmartphones
Fighting Accident Using Eye Detection forSmartphonesFighting Accident Using Eye Detection forSmartphones
Fighting Accident Using Eye Detection forSmartphones
IJERA Editor
 
Volume 2-issue-6-2046-2051
Volume 2-issue-6-2046-2051Volume 2-issue-6-2046-2051
Volume 2-issue-6-2046-2051
Editor IJARCET
 

Tendances (17)

IRJET- Igaze-Eye Gaze Direction Evaluation to Operate a Virtual Keyboard for ...
IRJET- Igaze-Eye Gaze Direction Evaluation to Operate a Virtual Keyboard for ...IRJET- Igaze-Eye Gaze Direction Evaluation to Operate a Virtual Keyboard for ...
IRJET- Igaze-Eye Gaze Direction Evaluation to Operate a Virtual Keyboard for ...
 
Eye tracking and detection by using fuzzy template matching and parameter bas...
Eye tracking and detection by using fuzzy template matching and parameter bas...Eye tracking and detection by using fuzzy template matching and parameter bas...
Eye tracking and detection by using fuzzy template matching and parameter bas...
 
Fighting Accident Using Eye Detection forSmartphones
Fighting Accident Using Eye Detection forSmartphonesFighting Accident Using Eye Detection forSmartphones
Fighting Accident Using Eye Detection forSmartphones
 
AN IMAGE BASED ATTENDANCE SYSTEM FOR MOBILE PHONES
AN IMAGE BASED ATTENDANCE SYSTEM FOR MOBILE PHONESAN IMAGE BASED ATTENDANCE SYSTEM FOR MOBILE PHONES
AN IMAGE BASED ATTENDANCE SYSTEM FOR MOBILE PHONES
 
IRJET - Smart Assistance System for Drivers
IRJET - Smart Assistance System for DriversIRJET - Smart Assistance System for Drivers
IRJET - Smart Assistance System for Drivers
 
Real Time Detection System of Driver Fatigue
Real Time Detection System of Driver FatigueReal Time Detection System of Driver Fatigue
Real Time Detection System of Driver Fatigue
 
IRJET- Smart Vehicle Accident Prevention System
IRJET-  	  Smart Vehicle Accident Prevention SystemIRJET-  	  Smart Vehicle Accident Prevention System
IRJET- Smart Vehicle Accident Prevention System
 
Yawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detectionYawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detection
 
Volume 2-issue-6-2046-2051
Volume 2-issue-6-2046-2051Volume 2-issue-6-2046-2051
Volume 2-issue-6-2046-2051
 
Driver Distraction Detection System Using Intelligent Approach Of Vision Base...
Driver Distraction Detection System Using Intelligent Approach Of Vision Base...Driver Distraction Detection System Using Intelligent Approach Of Vision Base...
Driver Distraction Detection System Using Intelligent Approach Of Vision Base...
 
Image processing based eye detection methods a theoretical review
Image processing based eye detection methods a theoretical reviewImage processing based eye detection methods a theoretical review
Image processing based eye detection methods a theoretical review
 
IRJET - Drowsiness Detection System using ML & IP
IRJET - Drowsiness Detection System using ML & IPIRJET - Drowsiness Detection System using ML & IP
IRJET - Drowsiness Detection System using ML & IP
 
Real time detecting driver’s drowsiness using computer vision
Real time detecting driver’s drowsiness using computer visionReal time detecting driver’s drowsiness using computer vision
Real time detecting driver’s drowsiness using computer vision
 
Automatic Breaking System Using Eye Blinking Sensor
Automatic Breaking System Using Eye Blinking SensorAutomatic Breaking System Using Eye Blinking Sensor
Automatic Breaking System Using Eye Blinking Sensor
 
IRJET - Automatic Car Insurance using Image Analysis
IRJET -  	  Automatic Car Insurance using Image AnalysisIRJET -  	  Automatic Car Insurance using Image Analysis
IRJET - Automatic Car Insurance using Image Analysis
 
Study of various techniques for driver behavior monitoring and recognition sytem
Study of various techniques for driver behavior monitoring and recognition sytemStudy of various techniques for driver behavior monitoring and recognition sytem
Study of various techniques for driver behavior monitoring and recognition sytem
 
Real time drowsy driver detection
Real time drowsy driver detectionReal time drowsy driver detection
Real time drowsy driver detection
 

Similaire à IRJET- Robust Visual Analysis of Eye State

Similaire à IRJET- Robust Visual Analysis of Eye State (20)

Implementation of face and eye detection on DM6437 board using simulink model
Implementation of face and eye detection on DM6437 board using simulink modelImplementation of face and eye detection on DM6437 board using simulink model
Implementation of face and eye detection on DM6437 board using simulink model
 
REAL TIME DROWSINESS DETECTION
REAL TIME DROWSINESS DETECTIONREAL TIME DROWSINESS DETECTION
REAL TIME DROWSINESS DETECTION
 
IRJET- Driver Alert System to Detect Drowsiness and Distraction
IRJET- Driver Alert System to Detect Drowsiness and DistractionIRJET- Driver Alert System to Detect Drowsiness and Distraction
IRJET- Driver Alert System to Detect Drowsiness and Distraction
 
IRJET- Driver Drowsiness Detection System using Computer Vision
IRJET- Driver Drowsiness Detection System using Computer VisionIRJET- Driver Drowsiness Detection System using Computer Vision
IRJET- Driver Drowsiness Detection System using Computer Vision
 
REAL-TIME DRIVER DROWSINESS DETECTION
REAL-TIME DRIVER DROWSINESS DETECTIONREAL-TIME DRIVER DROWSINESS DETECTION
REAL-TIME DRIVER DROWSINESS DETECTION
 
REAL-TIME DRIVER DROWSINESS DETECTION
REAL-TIME DRIVER DROWSINESS DETECTIONREAL-TIME DRIVER DROWSINESS DETECTION
REAL-TIME DRIVER DROWSINESS DETECTION
 
Driver Drowsiness Detection System Using Image Processing
Driver Drowsiness Detection System Using Image ProcessingDriver Drowsiness Detection System Using Image Processing
Driver Drowsiness Detection System Using Image Processing
 
A Proposed Accident Preventive Model For Smart Vehicles
A Proposed Accident Preventive Model For Smart VehiclesA Proposed Accident Preventive Model For Smart Vehicles
A Proposed Accident Preventive Model For Smart Vehicles
 
Driver Dormant Monitoring System to Avert Fatal Accidents Using Image Processing
Driver Dormant Monitoring System to Avert Fatal Accidents Using Image ProcessingDriver Dormant Monitoring System to Avert Fatal Accidents Using Image Processing
Driver Dormant Monitoring System to Avert Fatal Accidents Using Image Processing
 
Driver Dormant Monitoring System to Avert Fatal Accidents Using Image Processing
Driver Dormant Monitoring System to Avert Fatal Accidents Using Image ProcessingDriver Dormant Monitoring System to Avert Fatal Accidents Using Image Processing
Driver Dormant Monitoring System to Avert Fatal Accidents Using Image Processing
 
DROWSINESS DETECTION MODEL USING PYTHON
DROWSINESS DETECTION MODEL USING PYTHONDROWSINESS DETECTION MODEL USING PYTHON
DROWSINESS DETECTION MODEL USING PYTHON
 
Driver Drowsiness Detection System using Google ML Kit Face Detection API and...
Driver Drowsiness Detection System using Google ML Kit Face Detection API and...Driver Drowsiness Detection System using Google ML Kit Face Detection API and...
Driver Drowsiness Detection System using Google ML Kit Face Detection API and...
 
A Real-Time Monitoring System for the Drivers using PCA and SVM
A Real-Time Monitoring System for the Drivers using PCA and SVMA Real-Time Monitoring System for the Drivers using PCA and SVM
A Real-Time Monitoring System for the Drivers using PCA and SVM
 
DRIVER DROWSINESS DETECTION USING RASPBERRY PI
DRIVER DROWSINESS DETECTION USING RASPBERRY PIDRIVER DROWSINESS DETECTION USING RASPBERRY PI
DRIVER DROWSINESS DETECTION USING RASPBERRY PI
 
Driver Drowsiness and Alert System using Image Processing & IoT
Driver Drowsiness and Alert System using Image Processing & IoTDriver Drowsiness and Alert System using Image Processing & IoT
Driver Drowsiness and Alert System using Image Processing & IoT
 
Realtime Car Driver Drowsiness Detection using Machine Learning Approach
Realtime Car Driver Drowsiness Detection using Machine Learning ApproachRealtime Car Driver Drowsiness Detection using Machine Learning Approach
Realtime Car Driver Drowsiness Detection using Machine Learning Approach
 
Real Time Driver Drowsiness Detection System for Road Safety
Real Time Driver Drowsiness Detection System for Road SafetyReal Time Driver Drowsiness Detection System for Road Safety
Real Time Driver Drowsiness Detection System for Road Safety
 
In advance accident alert system & Driver Drowsiness Detection
In advance accident alert system & Driver Drowsiness DetectionIn advance accident alert system & Driver Drowsiness Detection
In advance accident alert system & Driver Drowsiness Detection
 
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- 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
 

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

Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
Kamal Acharya
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
MayuraD1
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
mphochane1998
 

Dernier (20)

Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planes
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 

IRJET- Robust Visual Analysis of Eye State

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2070 ROBUST VISUAL ANALYSIS OF EYE STATE Mr. Aaditya Acharya1, Ms. Apurva Tiwari2, Mr. Brijendra Mehra3, Mr. Deepak Motiani4, Mr. Vivek Sharma5 1,2,3,4B.Tech Student, Department of EE, Swami Keshvanand Institute of Technology, Management and Gramothan 5Assistant Professor, Department of EE, Swami Keshvanand Institute of Technology, Management and Gramothan, Jaipur, Rajasthan, India ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - In this system, we proposed to reduce the number of accidents caused by driver fatigue and thus improve road safety. This system treats the automatic detection of driver drowsiness based on visual information and artificial intelligence. We locate, track and analyze both the driver face and eyes to measure PERCLOS(percentageofeyeclosure) with SoftMax for neural transfer function. Driver’s fatigue is one of the major causes of traffic accidents, particularlyfordriversof large vehicles (such as buses and heavy trucks) due to prolonged driving periods and boredom in occupied conditions. Key Words: PERCLOS, SoftMax, artificial intelligence, driver fatigue, driver drowsiness. 1. INTRODUCTION The increasing number of traffic accidents due to a diminished driver’s vigilance level has become a serious problem for society. Statistics show that20%ofall thetraffic accidents are due to drivers with a diminished vigilance level. Furthermore, accidents related to driver hypo- vigilance are more serious than other types of accidents, since sleepy drivers often do not take correct action prior to a collision. For this reason, developing systems for monitoring driver’s level of vigilance and alertingthedriver, when he is drowsy and not paying adequate attention to the road, is essential to prevent accidents. The prevention of such accidents is a major focus of effort in the field of active safety research. People in fatigue show some visual behaviors easily observable from changes in their facial features like eyes, head, mouth and face. Computer vision can be a natural and nonintrusive technique to monitor driver’s vigilance. Faces as the primary part of human communication have been a research target in computer vision for a long time. The driver fatigue detection is considered as one of the most prospective commercial applications of automatic facial expression recognition. Automatic recognition (or analysis) of facial expression consists of three levels of tasks: face detection, facial expression information extraction, and expression classification. In thesetasks,theinformation extractionis the main issue for the feature based facial expression recognition from an image sequence. It involves detection, identification and tracking facial feature points under different illuminations, face orientations and facial expressions. 2. RELATED WORKS Some works have already been done in this field which is as follows: [1]Automatic Detection of Driver Fatigue Using Driving Operation Information for Transportation Safety [2] Bus Driver Fatigue and Stress Issues Study [3] Potentialcausesof driver fatigue: a study on transit bus 2 operators in Florida [4] Bus Driver: Factor that influence Behavior [5]Fatigue Factors Affecting Metropolitan Bus Drivers: A Qualitative Investigation.[6]OccupationalHealthHazards:AStudyofBus Drivers [7]Bhowmick et Kumar [6] usetheOtsuthresholding [7] to extract face region. The localization of the eye is done by locating facial landmarks such as eyebrow and possible face center. Morphological operation and Kmeans is used for accurate eye segmentation. Then aset of shape features are calculated and trained using non-linear SVM to get the status of the eye. Tianet Qin [9] builds a system that checks the driver eye states. Their system uses the Cb and Cr components of the YCbCr color space. This systemlocatesthefacewithavertical projection function, and the eyes withahorizontalprojection function. Once the eyes are located the system calculates the eyes states using a function of complexity. 3. THE PROPOSED SYSTEM The proposed system is a driver face monitoringsystemthat can detect driver hypo vigilance (both fatigue and distraction) by processing of eye and face regions. After image acquisition, face detection is the first stage of processing. Then, symptoms of hypo vigilance are extracted from face image. However, an explicit eye detection stage is not used to determine the eye in the face, but some of important symptoms related toeyeregion(top-halfsegment of the face) are extracted reforming the face detection algorithm for all frames is computationally complex. Therefore, after face detection in the first frame, face tracking algorithms are used to track driver face in the next frames unless the face is lost. (A) Eye And Mouth Detection The first step is the detection of the eye. For the eye detection we are using the Euclidian distancealgorithm.The distance is computed using the following formula:
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2071 The library contains both procedures and functions to calculate similarity between sets of data.Thefunctionisbest used when calculating the similarity betweensmall numbers of sets. The procedures parallelize the computation and are therefore more appropriate for computing similarities on bigger datasets. Euclidean similarity is only calculated over non-NULL dimensions. When calling the function, we should provide lists that contain the overlapping items. For the face detection we are using the dlib library. The dlib libraryships with a Histogram of Oriented Gradients-based face detector along with a predictor. The facial landmarks produced by dlib are an indexable list, as I describe here: Fig: Visualizing the 68 facial landmark coordinates After detection of face using the dlib library and extracting the eye part then the distance between the eye led is calculated and if the computed value is less than the threshold value then a alarm is given. Similarly for mouth if the amountofmouthopenedisgreater than the threshold value then alarm is given. (B)Out of Frame Detection In this segment if the driver’s eye is not on the road then a alarm will be given. The out of frame detection is based on the fact that if within the frame the face is detected using the face detection algorithm then no alarm or elsethere will bea alarm given. For the detection of the face we are using the dlib library and to extract the facial landmark imutils library is utilized. 4. RESULT AND TEST CASES We have performed the following test cases: Test case Id Test case Test case I/P Actual Result Expected Result Test case criteria(P/F) 001 Camera is working properly Execute the project and check if camera is working Camera starts as project runs Camera should start as project runs P 002 Check if video is not blur Execute the code and check if video is clear Video is not blur Video should not be blur it should be clear P 003 Check by detection of drowsiness alarm is generated or not Camera detects if the driver is sleepy If driver is sleepy alarm generates If driver is sleepy alarm should be generated P 004 Check if alarm generated is audible to the user Alarm is generated when drowsiness is detected by the system Alarm is audible to the user Alarm should be audible to the user P
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2072 005 Check if alarm is generated quickly or it takes time when the system detects the drowsiness of the driver Close your eyes in front of the system Alarm is generated quickly and do not takes time as the system detects the drowsiness of the driver Alarm should be generated quickly and not take time as the system detects the drowsiness of the driver P Fig1: Eye Detection and mouth detection Fig2: Out of frame detection 5. CONCLUSION The increasing number of traffic accidents due to a diminished driver’s vigilance level has become a serious problem for society. Statistics show that20%ofall thetraffic accidents are due to drivers with a diminished vigilance level. Furthermore, accidents related to driver hypo- vigilance are more serious than other types of accidents, since sleepy drivers often do not take correct action prior to a collision. For this reason, developing systems for monitoring driver’s level of vigilance and alertingthedriver, when he is drowsy and not paying adequate attention to the road, is essential to prevent accidents. 6. REFRENCES 1. Mandal, Bappaditya, LiyuanLi,GangSamWang,and JieLin."Towards detection of bus driver fatigue based on robust visual analysis of eye state." IEEE Transactionson Intelligent Transportation Systems 18, no. 3 (2016): 545-557. 2. Detecting Pedestrians Using Patterns ofMotionand Appearance Paul Viola Michael J.JonesDaniel Snow. 2003 IEEE. 3. Ji Q., Yang X.: Real-time eye, gaze, and face pose tracking for monitoring driver vigilance. Real-Time Imaging. 8(5):357-77(2002) 4. Kohji Murata, Etsunori Fujita, Shigeyuki Kojima, Shinitirou Maeda, Yumi Ogura, Tsutomu Kamei, Toshio Tsuji. 5. A. Malla, P. Davidson, P. Bones, R. Green and R. Jones, "Automated Video-based Measurement of Eye Closure for DetectingBehavioral Microsleep",in 32nd Annual International Conference of the IEEE, Buenos Aires, Argentina, 2010. 6. S. Vitabile, A. Paola and F. Sorbello, "Bright Pupil Detection in an Embedded, Real-time Drowsiness Monitoring System", in 24th IEEE International Conference on Advanced Information Networking and Applications, 2010. 7. T. Hong, H. Qin and Q. Sun, "An Improved Real Time Eye State Identification System in Driver Drowsiness Detection", in proceeding of the IEEE International Conference on Control and Automation, Guangzhou, CHINA, 2007. 8. Z. Tian et H. Qin, "Real-time Driver's Eye State Detection", in Proceedings of the IEEEInternational Conference on Vehicular Electronics and Safety, October 2005. 9. OpenCV. Open Source Computer Vision Library Reference Manual, 2001. 10. M. Saradadevi, P. Bajaj, "Driver fatigue detection using mouth and yawning analysis", Int. J. Comput. Sci. Netw. Secur. vol. 8, pp. 183-188, Jun. 2008.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 2073 7. BIOGRAPHIES AADITYA ACHARYA (B.Tech student, SKIT Jaipur) S-11 Vivek Vihar New Sanganeer Road, Sodala, Jaipur (Raj.) 302019, India APURVA TIWARI (B.Tech student, SKIT Jaipur) E3 402 Mahalakshmipuram Baran Road, Kota (Raj.)324001, India BRIJENDRA MEHRA (B.Tech student, SKIT Jaipur) B5 Keshavpura, Near ghas Bheru Vatika, Kota (Raj.)324009,India DEEPAK MOTIANI (B.Tech student, SKIT Jaipur) 157, Balaji nagar, Makarwali Road, Vaishali nagar, Ajamer (Raj.) 305001, India VIVEK SHARMA (Assistant professor, SKIT Jaipur) 354 Vivek Vihar New Sanganeer Road, Sodala, Jaipur (Raj.)302019, India