Sai Prudvi Raj Yerrapragada
Introduction
Every year, drowsy driving claims thousands of lives globally. In the U.S. alone, fatigue contributes to over 100,000 crashes annually, resulting in tragic losses that ripple through families and communities. Imagine a truck driver battling exhaustion on a midnight highway or a parent driving home after a sleepless night this project seeks to be their safeguard. By merging computer vision and machine learning, we developed a real-time system that detects early signs of drowsiness, drooping eyelids, prolonged blinks, or frequent yawns and alerts drivers before catastrophe strikes. Think of it as a vigilant co-pilot, tirelessly watching over those behind the wheel.
Problem Statement
Traditional drowsiness detection methods, such as wearable sensors or steering-wheel monitors, are often intrusive, costly, or prone to false alarms. A driver might forget to wear a device or disable it due to discomfort. Our mission is to design a non-invasive, camera-based solution that works seamlessly across real-world conditions: low light, drivers wearing glasses, and varying head angles. The challenge lies in balancing accuracy with real-time performance while ensuring affordability and ease of integration into existing vehicles.
Methodology
The system employs a multi-stage workflow:
Face Detection: A webcam captures live video, and OpenCV’s Haar Cascade classifier identifies the driver’s face.
Facial Landmark Detection: The dlib library pinpoints 68 facial landmarks, isolating regions for the eyes and mouth.
Eye Aspect Ratio (EAR) Calculation: The EAR, derived from vertical and horizontal distances between eye landmarks, determines blink duration. A closed eye corresponds to a sharp drop in EAR.
Yawning Detection: Mouth aspect ratio (MAR) is computed similarly to identify prolonged yawning.
Alert System: If eyes remain closed or yawns exceed predefined thresholds (e.g., 50 consecutive frames), an audible alarm activates, and vehicle speed is reduced via microcontroller integration.

The implementation uses Python, OpenCV, and dlib, ensuring real-time processing on low-resource hardware.
Code Implementation
The following is a simplified version of the implementation in Python
Research Paper Version:
You need a Arduino camera to test this code.
Github Project Version:
You can test this code directly in your laptop and see the results.
Experimental Results
The system was tested using a 5-megapixel webcam connected to a laptop. The webcam continuously captured real-time video of the driver’s face, and the facial landmark detection algorithm was used to track the driver's eye movements and yawning behavior.
The following steps were performed during the testing phase:
Face Detection: The system first detected the driver’s face and tracked eye and mouth landmarks.
Eye and Mouth Aspect Ratio Calculation: The system measured the Eye Aspect Ratio (EAR) and Mouth Aspect Ratio (MAR) to determine whether the driver was experiencing drowsiness.
Drowsiness Detection and Alert Triggering: If the EAR remained below the threshold (0.27) for a given number of frames, or if excessive yawning was detected, the system triggered an alarm sound.
Recording Accuracy Levels: The system's accuracy was evaluated under different test scenarios, such as daytime, nighttime, participants with glasses, and participants with different facial structures.
Test Scenarios and Observations
The system was evaluated under multiple conditions to determine its effectiveness in detecting drowsiness.
From the test results, it was observed that the system performed exceptionally well in standard lighting conditions, achieving an accuracy of 95 percent. However, performance decreased in low-light environments, where the detection of eye closure was less reliable. The system was still able to detect drowsiness effectively when drivers wore glasses, but accuracy was slightly reduced for heavily tinted lenses.
The results also indicated that the system could not detect head movements or distractions, meaning that a driver could still fall asleep by looking downward or away from the camera without triggering the alarm.
Key Findings from Experimentation
High Accuracy in Standard Conditions: The system achieved an accuracy of 95 percent in well-lit environments.
Challenges in Low-Light Conditions: Accuracy decreased to around 80 percent in dim lighting. Infrared-based detection could enhance performance.
Effectiveness with Eyeglasses: The system could detect drowsiness in drivers wearing glasses, but heavily tinted lenses affected performance.
Blinking and Distractions: Rapid blinking sometimes triggered false alerts, and the system could not detect if the driver was looking away from the road.
Conclusion
The driver drowsiness detection system successfully identifies fatigue symptoms such as eye closure and yawning using computer vision and machine learning techniques. The project provides a cost-effective and non-intrusive solution to reducing road accidents caused by drowsy driving.
Key Achievements
The system was able to effectively monitor driver fatigue in real time.
It successfully detected eye closure and yawning, issuing alerts before an accident could occur.
The solution was developed using only a webcam, making it affordable and easy to implement in vehicles without requiring additional hardware.
The project demonstrated over 90 percent accuracy in standard conditions, making it a viable option for integration into real-world applications.
Limitations
While the system performed well, there were some limitations:
Low-Light Performance: Accuracy dropped in dim lighting. Future versions could integrate infrared cameras to improve detection at night.
Head Pose Estimation Not Included: The system could not detect if the driver looked away from the road. Future enhancements should integrate head pose tracking.
Future Enhancements
Infrared-Based Night Vision: Integrating infrared cameras will improve accuracy in low-light conditions.
Head Pose Detection: Using deep learning-based head tracking will help detect when drivers look away from the road.
Vehicle Integration: Future versions could be integrated with car control systems to automatically slow down the vehicle when drowsiness is detected.
Driver Behavior Monitoring: Machine learning models could be trained on driver behavior patterns to predict fatigue levels more accurately.
Final Thoughts
This project has successfully demonstrated that AI and computer vision can be used to detect driver fatigue in real time. By integrating this system into vehicles, many road accidents caused by drowsy driving could be prevented, improving road safety for both drivers and passengers.
The driver drowsiness detection system is open-source and available for further development. With future enhancements, it has the potential to become a fully automated safety feature in modern vehicles.
References
Borghini, G., et al. (2012). "Measuring neurophysiological signals in aircraft pilots and car drivers." Neuroscience & Biobehavioral Reviews.
Jap, B. T., et al. (2009). "Using EEG spectral components to assess algorithms for detecting fatigue." Expert Systems with Applications.
Liu, D., et al. (2010). "Drowsiness Detection Based on Eyelid Movement." IEEE Workshop on Education Technology and Computer Science.
Bradski, G., & Kaehler, A. (2008). Learning OpenCV. O’Reilly Media.
Ameratunga, S., et al. (2002). "Driver sleepiness and risk of serious injury to car occupants." British Medical Journal.
For a more detailed understanding of the Driver Drowsiness Detection System, including the complete research methodology, implementation details, experimental results, and future enhancements, refer to the following resources:
Research Paper
The complete research paper, “Driver Drowsiness Detection Using AI”, has been published in the International Journal of All Research Education and Scientific Methods (IJARESM). It covers in-depth technical aspects, system architecture, and evaluation results of this project.
Read the Full Research Paper: IJARESM Publication
GitHub Repository
The GitHub repository contains the full source code of the project, implementation details, and setup instructions for running the system on a personal computer or laptop. You can download the code, explore the algorithms, and contribute to further improvements.
Explore the Source Code on GitHub: Driver Drowsiness Detection GitHub Repository