Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/travorlzh/vision-stuff-cpp
Face recognition modules written in C++ instead of Python
https://github.com/travorlzh/vision-stuff-cpp
cplusplus face-recognition image-processing
Last synced: 26 days ago
JSON representation
Face recognition modules written in C++ instead of Python
- Host: GitHub
- URL: https://github.com/travorlzh/vision-stuff-cpp
- Owner: TravorLZH
- Created: 2019-08-04T09:34:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-04T10:35:00.000Z (over 5 years ago)
- Last Synced: 2024-11-16T15:12:53.883Z (3 months ago)
- Topics: cplusplus, face-recognition, image-processing
- Language: C++
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Image processing using C++
==========================In order to port my face recognition modules to mobile platform, I need to have
everything redone using C++ since Python is not supported in mobile development.The good news is that Android provides NDK to develop with C++, and iOS Apps are
using Objective-C, which means I can create a native C library to wrap OpenCV
and DLib to fulfill the purpose of porting.## Build instructions
First, there are 2 libraries needed to be installed before the build:
* [DLib](http://dlib.net): For face recognition
* [OpenCV](https://www.opencv.org): For image processing (I think it is better
than DLib's image processing system)If you are using Mac OSX and your HomeBrew are ready to use, you can:
$ brew install opencv dlib
After installing prerequisites, you can build the project using CMake:
$ mkdir build; cd build; cmake ..
$ cmake --build .> NOTE: The number of dots in each `cmake` command differs