Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kalmik/parallel-face-recognition

A parallel implementation of face recogniton based on opencv eigenfaces algorithm
https://github.com/kalmik/parallel-face-recognition

Last synced: 16 days ago
JSON representation

A parallel implementation of face recogniton based on opencv eigenfaces algorithm

Awesome Lists containing this project

README

        

# parallel-face-recognition
A parallel implementation of face recogniton based on opencv eigenfaces algorithm

####How to run

install opencv libraries and run the command below.

```
g++ mpi_eigenfaces.cpp -o faces `pkg-config --libs opencv` -lmpi -g
```

####Options
```
-DDISPLAY display result image
-DSHOW_ONLY_TIME print only Wall time to run test suites
```

####Execute

```
mpiexec -n ./faces
```

####Test
Test suite.
```
sh test.sh
```

###Results
![Speed UP](https://raw.githubusercontent.com/kalmik/parallel-face-recogniton/master/benchmarks/speedup.png)

![Efficiency](https://raw.githubusercontent.com/kalmik/parallel-face-recogniton/master/benchmarks/efficiency.png)