libfacedetection: C++ open source library for face detection in images

Started by JeGX, March 15, 2019, 12:21:15 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

JeGX

libfacedetection is an open source library for face detection in images. The face detection speed can reach 1500FPS.

Quote
This is an open source library for CNN-based face detection in images. The CNN model has been converted to static variales in C source files. The source code does not depend on any other libraries. What you need is just a C++ compiler. You can compile the source code under Windows, Linux, ARM and any platform with a C++ compiler.

SIMD instructions are used to speedup the detection. You can enable AVX2 if you use Intel CPU or NEON for ARM.

The model file has also been provided in directory ./models/.

examples/libfacedetectcnn-example.cpp shows how to use the library.

Link: https://github.com/ShiqiYu/libfacedetection

libfacedetection demo

raulperkins

Very successful application for face detection. I've been doing some research for a while.