Face detection and landmark implementation with mtcnn based on ncnn framework.
- This project is modified from https://github.com/Longqi-S/ncnn-mtcnn.git;
- I compiled ncnn on RK3399, ubuntu 16.04,if you use other platform, replace ncnn include files and libncnn.a;
- Compile the MTCNN-NCNN project you will get the libmtcnn.a and libmtcnn.so file in the lib directory, you can also run mtcnn_test in bin directory and get the result of Face detection and landmark;
mkdir bin
mkdir build
cd build
cmake ..
make
cd ../bin
./mtcnn_test
if you use other platform, compile ncnn project first and replace releated include files and libncnn.a in this project. (https://github.com/Tencent/ncnn.git)