Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kalmik/parallel-face-recognition
- Owner: kalmik
- License: bsd-2-clause
- Created: 2015-11-28T00:31:29.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-09T18:35:28.000Z (over 8 years ago)
- Last Synced: 2024-10-30T21:12:05.453Z (2 months ago)
- Language: C++
- Size: 4.49 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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)