Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/play3rzer0/facedetection
Detecting faces in mages using Open CV and Haarcascades.
https://github.com/play3rzer0/facedetection
computer-science computer-vision face-detection haarcascade-frontalface opencv-python python
Last synced: about 3 hours ago
JSON representation
Detecting faces in mages using Open CV and Haarcascades.
- Host: GitHub
- URL: https://github.com/play3rzer0/facedetection
- Owner: Play3rZer0
- License: gpl-3.0
- Created: 2019-01-31T17:52:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-27T17:44:20.000Z (over 5 years ago)
- Last Synced: 2024-07-11T14:25:40.256Z (4 months ago)
- Topics: computer-science, computer-vision, face-detection, haarcascade-frontalface, opencv-python, python
- Language: Python
- Size: 179 KB
- Stars: 15
- Watchers: 0
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FaceDetection
Detecting faces in images using Open CV and Haar Cascades.This requires Open CV, Python, Haar Cascades training data and suitable OS platform (Mac, Linux or Windows). For specific version please check vendor websites for the latest.
I used Python 2.7.14 on a test machine running Windows 7 Professional (i3 2.1 GHz Arrandale).
To determine which version of Python you have installed, type the following on your terminal or command prompt:python --version
OpenCV 3.4.3 was used with this project, suitable for Python 2.7.14. To determine if you have properly installed OpenCV, type the following from the python command line:
import cv2
Images used in this project were set to a resolution of 500 x 331 pixels (JPEG)
For documentation, please read:
https://becominghuman.ai/face-detection-using-opencv-with-haar-cascade-classifiers-941dbb25177