https://github.com/yaacov/snapchat-killer
Taking opencv haar classifier to a test drive
https://github.com/yaacov/snapchat-killer
Last synced: 7 months ago
JSON representation
Taking opencv haar classifier to a test drive
- Host: GitHub
- URL: https://github.com/yaacov/snapchat-killer
- Owner: yaacov
- License: apache-2.0
- Created: 2017-07-11T10:33:30.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-31T08:24:31.000Z (about 8 years ago)
- Last Synced: 2025-01-23T09:43:14.087Z (8 months ago)
- Language: Python
- Size: 28.8 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# snapchat-killer
Taking opencv haar classifier to a test driveFace recognition + draw ears where face is.
#### Requires
opencv and opencv-contrib version 3.3.0-rc#### Demo
#### How to compile opencv from github:
Install git, camke and some devel libs
```
dnf install "Development Tools" "Engineering and Scientific"
dnf install cmake gtk3-devel
```Get the code
```
git clone https://github.com/opencv/opencv.git
git clone https://github.com/opencv/opencv_contrib.git
```Compile
```
mkdir opencv/build
cd opencv/buildcmake -DOPENCV_EXTRA_MODULES_PATH= ../../opencv_contrib/modules/ -DCMAKE_INSTALL_PREFIX=/usr ..
make
```Install
```
sudo make install
```