1. Introduction
Road traffic injury is, by most accounts, one of the more preventable public health crises of our time, and yet it continues to claim an extraordinary number of lives every year worldwide. A meaningful share of that toll, it turns out, has less to do with mechanical failure or reckless overtaking than with something almost mundane: a driver's eyes closing for a moment too long. Drowsiness at the wheel does not announce itself the way a swerve or a horn blast does; it creeps in quietly, through micro-sleeps that last only a second or two but are more than enough time for a vehicle travelling at highway speed to drift out of its lane. Estimates from the National Sleep Foundation suggest that roughly one in five drivers has felt drowsy behind the wheel at some point, a figure that is easy to read past on a page but sobering once you consider how many of those moments could plausibly have ended badly.
The pattern is not unique to any one country, though its severity varies. In Bangladesh, for instance, the Road Safety Foundation's annual reporting has documented a troubling upward trend in road fatalities between 2020 and 2021, with more than six thousand deaths and several thousand additional injuries recorded in a single reporting year. Fatigue and the brief lapses in attention that come with it are frequently implicated in these figures, and the World Health Organization's broader statistics on traffic mortality make clear that this is not a problem confined to any single region — it is, rather uncomfortably, a near-universal one. Perhaps what is most striking is how ordinary the precipitating conditions usually are: a long commute, a late shift, a stretch of monotonous highway. Nothing dramatic. Just fatigue, unnoticed until it is too late.
Industry has not been blind to this. Several automakers have built drowsiness-warning features directly into their vehicles, and it is worth pausing on how differently each has approached the same underlying problem. Volvo's Driver Alert Control, for example, leans on a vehicle-mounted camera tied into the lane departure warning system, watching for the kind of wandering trajectory that often precedes a micro-sleep. Mercedes-Benz took a somewhat different route with its Attention Assist system, which builds a running profile of a driver's typical steering behavior early in a trip and then continuously checks whether later inputs still fit that pattern — a subtle but clever way of letting the car learn what "normal" looks like for the person actually driving it. Bosch, meanwhile, fuses signals from the steering wheel, vehicle speed, turn-signal activity, and a front-mounted lane-assist camera to arrive at its own drowsiness judgment. Each of these systems works reasonably well within its own vehicle, and yet none of them has become anything close to standard equipment. They tend to appear in higher trim levels or luxury models, which is a polite way of saying that the drivers who might benefit most — those without the newest, most expensive cars — are usually the ones without access to them.
That mismatch is, in a sense, the motivation for the present study. If a technology only reaches the drivers least likely to need it, its public-health value is inevitably limited. Two developments make it reasonable to expect something better. First, smartphones with reasonably capable cameras and, increasingly, dedicated neural processing hardware are now nearly ubiquitous, including on operating systems such as Android that dominate the global market. Second, deep learning has matured to the point where camera-based behavioral analysis — once computationally out of reach for anything resembling real-time use — is now genuinely feasible on modest hardware. Taken together, these two trends suggest that a drowsiness-detection system need not live inside a $60,000 sedan; it could, in principle, live inside the phone already mounted on a driver's dashboard.
Researchers have pursued this problem along three broad lines, and it is worth walking through them briefly because each has shaped the design choices made here. The first relies on driving-pattern signatures — steering-wheel micro-corrections, lateral lane position, and similar indirect cues. Krajewski et al. (2009) demonstrated that fatigue could be estimated from steering-wheel micro-adjustments with roughly 86% accuracy, which is respectable, though such approaches remain tethered to the particular vehicle, road geometry, and driving style involved, and do not transfer especially well across contexts. McDonald et al. (2018) refined this general strategy with a contextual, temporal algorithm that folds steering angle, vehicle speed, and accelerator position into a Bayesian network, reporting fewer false positives than PERCLOS-style eyelid-tracking methods and underscoring, somewhat counterintuitively, that the ten seconds of context preceding a given moment often matter more than the moment itself.
The second line turns to physiological signals — EEG, ECG, and related bio-signals — which tend to be the most sensitive of the three approaches, if also the least convenient. Mardi et al. (2011) reported accuracy exceeding 90% using EEG-derived chaotic features, a genuinely strong result, though it comes at the cost of attaching multiple electrodes to a driver's scalp, which is not something most people are prepared to tolerate on a daily commute. Bhardwaj et al. (2018) pursued a somewhat gentler variant using electrocardiogram-based heart-rate variability, noting that capacitive electrodes embedded in the seat or steering wheel can, in principle, capture usable ECG data with far less discomfort than scalp electrodes — an encouraging direction, even if the classification pipelines built on top of that data remain works in progress.
The third and, for present purposes, most relevant line is computer vision applied to facial behavior: gaze, expression, yawning, eye closure, and head movement. Dua et al. (2021) combined four convolutional networks — FlowImageNet, VGG-FaceNet, AlexNet, and a ResNet-based yawn-and-gesture detector — into an ensemble, achieving strong results by pooling behavioral, facial, and environmental cues rather than relying on any single signal. Ed-Doughmi et al. (2020) took a temporal approach instead, feeding a sequence of facial frames through a multilayered 3D convolutional recurrent network so that drowsiness could be inferred from how a face changes over time rather than from any one static image. Jabbar et al. (2018) proposed a more direct pipeline, extracting facial landmarks and passing them to a convolutional classifier tuned for microsleep detection, and evaluated it across a range of lighting conditions and with and without eyeglasses — a detail that matters more than it might first appear, since glasses and glare are exactly the sort of thing that trips up naive vision systems in practice. Jamshidi et al. (2021) went further still with a hierarchical architecture, using ResNet to first characterize the face, the lighting, and whether glasses were present, before handing the result to an LSTM that could exploit temporal dependencies between frames. And Hashemi et al. (2020) compared a purpose-built network against transfer-learning variants of VGG16 and VGG19, ultimately reporting that a fine-tuned VGG16 model reached 98.53% accuracy on eye-state classification — the strongest single figure among the vision-based studies reviewed here, though achieved with a comparatively heavy architecture.
What emerges from this body of work, taken as a whole, is a reasonably consistent trade-off: physiological methods tend to be accurate but intrusive; driving-pattern methods are convenient but shallow; and vision-based methods sit somewhere in between, offering non-intrusive monitoring at the cost of computational demands that can be difficult to reconcile with the tight latency and power budgets of an embedded or mobile deployment. Convolutional networks in particular have delivered excellent classification performance in this space, yet many of the architectures reported to date remain too large, or too dependent on multi-model ensembles, to run comfortably in real time on modest hardware.
It is this gap — between demonstrated accuracy and practical deployability — that the present study is aimed at. Rather than adding another accuracy point to an already crowded leaderboard, we set out to ask whether a single, moderately sized multi-task convolutional network, built around three interpretable behavioral indices (eye closure, yawning, and head bending) and trained on facial video alone, could approach the performance of heavier or sensor-dependent alternatives while remaining lightweight enough for real-world, camera-only use. The remainder of this paper is organized as follows: the Methods section describes, in enough detail to be reproduced, how facial landmarks were extracted and converted into drowsiness indices and how the classification network was trained; the Results section reports the resulting accuracies and compares them against the literature summarized above; the Discussion section considers what these results imply, where the approach falls short, and where it might reasonably go next; and the Conclusion closes with a brief summary of the study's contribution.



