https://github.com/radames/python_opencv_camera_haar
Simple code example of Python with Opencv and camera face detection with haar classifiers
https://github.com/radames/python_opencv_camera_haar
haar-cascade opencv python
Last synced: over 1 year ago
JSON representation
Simple code example of Python with Opencv and camera face detection with haar classifiers
- Host: GitHub
- URL: https://github.com/radames/python_opencv_camera_haar
- Owner: radames
- Created: 2020-08-26T05:55:42.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-08-26T07:35:52.000Z (almost 6 years ago)
- Last Synced: 2025-03-24T10:51:34.913Z (over 1 year ago)
- Topics: haar-cascade, opencv, python
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Opencv Camera Haar Detection
Because of of my [code gists](https://gist.github.com/radames/effc25355c194bd23bbd1d0cbf87d449) has a lot of comments and questions.
Here is one repository with env for reference.
Create a virtual env, activate and install requirements
~~~bash
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
~~~