0% found this document useful (0 votes)
20 views

PART2

The document discusses a driver drowsiness detection system that uses image processing and machine learning algorithms. It aims to reduce traffic accidents caused by driver fatigue by detecting drowsiness based on eye aspect ratio calculated from webcam images of the driver's face. The system was developed using Python libraries OpenCV and dlib for face and eye detection.

Uploaded by

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

PART2

The document discusses a driver drowsiness detection system that uses image processing and machine learning algorithms. It aims to reduce traffic accidents caused by driver fatigue by detecting drowsiness based on eye aspect ratio calculated from webcam images of the driver's face. The system was developed using Python libraries OpenCV and dlib for face and eye detection.

Uploaded by

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

ABSTRACT

Nowadays, accidents occur during drowsy road trips and increase day by day. It is a known fact that
many accidents occur due to driver fatigue and sometimes inattention, this project is primarily
devoted to maximizing efforts to identify drowsiness. State of the driver under real driving
conditions. The aim of driver drowsiness detection systems is to try to reduce these traffic accidents.
Our goal is to provide an interface where the program can automatically detect the driver's
drowsiness by using the image of a person captured by the webcam and calculating the eye aspect
ratio . When the eye aspect ratio is less than threshold value then driver is sleepy and it plays an
alert sound. This project is developed using Python and its libraries OpenCV and dlib which is used
to detect the face detection and landmark detection.

i
ACRONYMS

OpenCV : Open Source Computer Vision

ML : Machine Learning

EAR : Eye Aspect Ratio

ii
TABLE OF CONTENTS

Page No.

ABSTRACT i

ACRONYMS ii

TABLE OF CONTENTS iii

LIST OF FIGURES iv

CHAPTER 1 INTRODUCTION 01

1.1 INTRODUCTION 01

1.2 OBJECTIVES 01
1.3 METHODOLOGY 02
CHAPTER 2 LITERATURE REVIEW 03
CHAPTER 3 IMPLEMENTATION 04

3.1 ALGORITHM 04
3.1.1 FACE DETECTION AND LANDMARK DETECTION 04

3.1.2 EYE ASPECT RATIO 05


3.1.3 FLOW CHART 06
3.2 SOFTWARE REQUIREMENT SPECIFICATIONS (SRS) 06
3.2.1 TECHNOLOGY DESCRIPTION 08
CHAPTER 4 EXPERIMENTATION AND RESULTS 10
4.1 EXPERIMENTAL WORK 10

4.2 RESULT 12
4.3 MERTIS AND DEMERITS 13
CHAPTER 5 CONCLUSION AND FUTURE SCOPE 14
5.1 CONCLUSION 14

5.2 FUTURE SCOPE 14


REFERENCES 15

iii
LIST OF FIGURES

Fig. No. Title Page No.

3.1.1 68 facial landmark detection 04

3.1.2 Location of eye 05

4.2.1 Output 1 with open eyes 12

4.2.2 Output 2 with closed eyes 13

iv

You might also like