Drowsiness detection using facial landmarks or CNN.
Project description
Drowsiness Validator
A Python package for detecting drowsiness using facial landmarks or a Convolutional Neural Network (CNN).
Installation
Install the package using pip:
pip install drowsiness-validator
Usage
Here's a basic example of how to use the package:
from drowsiness_validator import detect_drowsiness
# Example with image path
test_img_path = 'path/to/your/image.jpg'
result = detect_drowsiness(image_path=test_img_path, method='cnn')
print(result)
# Example output: {'prediction': 1, 'status': 'Drowsy', 'method': 'cnn'}
# Example with base64 image
import base64
with open(test_img_path, 'rb') as f:
img_b64 = base64.b64encode(f.read()).decode('utf-8')
result = detect_drowsiness(image_base64=img_b64, method='cnn')
print(result)
# Example output: {'prediction': 1, 'status': 'Drowsy', 'method': 'cnn'}
Flask Route Example
Here is an example of a Flask route to check drowsiness from a base64 image:
from flask import Flask, request, jsonify
from drowsiness_validator import detect_drowsiness
app = Flask(__name__)
@app.route('/check-drowsiness', methods=['POST'])
def check_drowsiness():
data = request.json
if 'image_base64' not in data:
return jsonify({'error': 'image_base64 is required'}), 400
image_base64 = data['image_base64']
result = detect_drowsiness(image_base64=image_base64, method='cnn')
return jsonify(result)
if __name__ == '__main__':
app.run(debug=True)
Documentation
detect_drowsiness
Detects drowsiness from an image using either CNN or facial aspect ratios (via Random Forest).
Args:
image_path(str, optional): Path to the input image file. Defaults to None.image_base64(str, optional): Base64 encoded string of the input image. Defaults to None.method(str, optional): Method for detection ('cnn' or 'aspect_ratio'). Defaults to 'cnn'.force_train_cnn(bool, optional): Whether to force retraining of the CNN model. Defaults to False.train_dir(str, optional): Path to the training data directory (needed if force_train_cnn=True).test_dir(str, optional): Path to the test data directory (needed if force_train_cnn=True).
Returns:
dict: A dictionary containing the prediction result and method used.
Example Response:
{
"prediction": 1,
"status": "Drowsy",
"method": "cnn"
}
calculate_ARs
Calculates aspect ratios from an image.
Args:
image_path(str, optional): Path to the input image file. Defaults to None.image_data(numpy array, optional): Image data. Defaults to None.
Returns:
-
dict: A dictionary containing calculated aspect ratios or an error message.Example:
{ "EAR": 0.289, # Eye Aspect Ratio "MAR": 0.625, # Mouth Aspect Ratio "MOE": 2.162, # Mouth over Eye Ratio "HPR": 1.342, # Head Pose Ratio "BAR": 12.456 # Brow Aspect Ratio }
calculate_all_ARs
Calculates all aspect ratios from either an image path or image data (numpy array).
Args:
image_path(str, optional): Path to the input image file. Defaults to None.image_data(numpy array, optional): Image data. Defaults to None.
Returns:
dict: A dictionary containing calculated aspect ratios.
predict_drowsiness_with_cnn
Predicts drowsiness using the trained CNN model from image data or path.
Args:
image_data(numpy array, optional): Image data as numpy array. Defaults to None.image_path(str, optional): Path to the input image file. Defaults to None.force_train(bool, optional): Whether to force retraining of the CNN model. Defaults to False.train_dir(str, optional): Path to the training data directory (needed if force_train=True).test_dir(str, optional): Path to the test data directory (needed if force_train=True).
Returns:
tuple: (prediction, confidence) where prediction is 0 (Active) or 1 (Drowsy), and confidence is a float between 0 and 1.
Author
Sharjeel Baig
- Portfolio: https://sharjeelbaig.github.io
- GitHub: https://github.com/sharjeelbaig
License
This project is licensed under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file drowsiness_validator-0.1.6.tar.gz.
File metadata
- Download URL: drowsiness_validator-0.1.6.tar.gz
- Upload date:
- Size: 74.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ec26cffa698064027f06db3ffa48e1e19e9bcecaedbf227fb45d2a49ccae4bf
|
|
| MD5 |
76f016ddefd7743d68df0430bf70e670
|
|
| BLAKE2b-256 |
25ed1f6725458e287d1ce7877237accfeb87d6f9d8672019993f875eb9eadf59
|
File details
Details for the file drowsiness_validator-0.1.6-py3-none-any.whl.
File metadata
- Download URL: drowsiness_validator-0.1.6-py3-none-any.whl
- Upload date:
- Size: 74.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23042ceb596b28456e22cf227beaa0829c2534d1a999283bb96b8ada8f503a34
|
|
| MD5 |
a1e681763a3ce483fe402a08d5e14c27
|
|
| BLAKE2b-256 |
f948f35637c5bba689365a4b95bb57920112f3ad2f9236ba577813de8c9c0c45
|