-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
071f644
commit 61425f2
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Face detection with ML and Open CV | ||
|
||
In order to build face recognition software, we have to use the built-in Haar cascade classifiers in OpenCV. Luckily these classifiers have already been pre-trained to recognize faces! | ||
|
||
*images/* folder has several images for face detection. | ||
|
||
One can modify *scaleFactor* and *minNeighbors* parameters to fine tune the face detection technique. | ||
|
||
run the command to test it | ||
|
||
python detect_faces.py --face cascades/haarcascade_frontalface_default.xml --image images/obama.png |