Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jianlizh429/face_detection
https://github.com/jianlizh429/face_detection
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jianlizh429/face_detection
- Owner: JianliZh429
- Created: 2017-11-02T08:42:16.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-12T10:06:57.000Z (almost 7 years ago)
- Last Synced: 2024-04-14T03:50:27.011Z (9 months ago)
- Language: Python
- Size: 147 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Face detection demo
This is a demo in usage of Haar Feature-based Cascade Classifiers## Dependencies
- python2.7
- opencv-python=3.3.0.10
- numpy=1.13.3## How to setup
You'd better to use a virtual env and run:
```
pip install -r requirements.txt
```
## How to use
- Detect a single image
```
python detect.py src_image.jpg detected.jpg
```
- Detect faces from a video files
```
python detect.py $PATH_to_VIDEO_FILE -i -p detected
```
```
python main.py $PATH_to_VIDEO_FILE -i -p detected
```