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

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

Awesome Lists containing this project

README

          

# snapchat-killer
Taking opencv haar classifier to a test drive

Face recognition + draw ears where face is.

#### Requires
opencv and opencv-contrib version 3.3.0-rc

#### Demo
![Demo](/snap.gif?raw=true "Snap 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/build

cmake -DOPENCV_EXTRA_MODULES_PATH= ../../opencv_contrib/modules/ -DCMAKE_INSTALL_PREFIX=/usr ..

make
```

Install
```
sudo make install
```