Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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