Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vyask21/opencv-drowsy
Drowsiness detection can be quickly done using shape predictor face landmarks.dat model file that mark the essential landmarks on the face using OpenCV modules.
https://github.com/vyask21/opencv-drowsy
numpy opencv-python scipy
Last synced: about 1 month ago
JSON representation
Drowsiness detection can be quickly done using shape predictor face landmarks.dat model file that mark the essential landmarks on the face using OpenCV modules.
- Host: GitHub
- URL: https://github.com/vyask21/opencv-drowsy
- Owner: vyask21
- Created: 2024-05-17T03:34:28.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-17T06:46:42.000Z (6 months ago)
- Last Synced: 2024-10-02T06:03:40.288Z (about 2 months ago)
- Topics: numpy, opencv-python, scipy
- Language: Jupyter Notebook
- Homepage:
- Size: 67.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# opencv-drowsy
A project inspired by Adrian Rosebrock's take on [Drowsiness detection with OpenCV](https://pyimagesearch.com/2017/05/08/drowsiness-detection-opencv/).
### dependencies
```pip install numpy opencv-python dlib imutils```
> [!NOTE]
>If you're unable to install/run opencv-python or are faced with the error
>ImportError: DLL load failed while importing cv2: The specified module could not be found.
>1. Create a env in your pip/conda environment and try reinstalling opencv-python. Else,
>2. Run ```!pip install opencv-contrib-python``` via jupyter notebook cell.