https://github.com/zhenye-na/viola-jones-algo
👨👩 Viola Jones Face Detection
https://github.com/zhenye-na/viola-jones-algo
computer-vision face-detection face-recognition viola-jones
Last synced: 4 months ago
JSON representation
👨👩 Viola Jones Face Detection
- Host: GitHub
- URL: https://github.com/zhenye-na/viola-jones-algo
- Owner: Zhenye-Na
- Created: 2018-03-11T21:28:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-09T15:30:32.000Z (over 7 years ago)
- Last Synced: 2025-04-06T23:09:03.388Z (6 months ago)
- Topics: computer-vision, face-detection, face-recognition, viola-jones
- Language: Python
- Homepage:
- Size: 1.02 GB
- Stars: 3
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Viola Jones Face Detection
Course Project of CS543: Computer Vision in Spring 2018, UIUC
Implementation of the face detection algorithm by Paul Viola and Michael J. Jones.## Requirement
* numpy
* Pillow
* scikit-image
* tensorflow## Outline
TBA## Reading materials
- [Object Detection using Haar-like features](http://www.cs.utexas.edu/~grauman/courses/spring2008/slides/Faces_demo.pdf)
- [Face Detection using Haar Cascades](http://docs.opencv.org/trunk/d7/d8b/tutorial_py_face_detection.html)
- [Haar-like Features](https://en.wikipedia.org/wiki/Haar-like_features)
- [Object Detection using Haar-cascades Classifier](http://ds.cs.ut.ee/Members/artjom85/2014dss-course-media/Object%20detection%20using%20Haar-final.pdf)
- [OpenCV Documentation](http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_tutorials.html)