1. 修改cmakelist.txt

打开cmake的demo编译选项

option(DEMO "build the demo" ON)

2. 编译

mkdir build
cd build
cmake ..
make

【人脸检测】ubuntu16.04编译libfacedetection_编译选项
【人脸检测】ubuntu16.04编译libfacedetection_编译选项_02

3. 测试

cd build
./detect-image-demo ../images/000038.jpg

结果

images/000388.jpg 
time = 58.0042ms
100 faces detected.
face 0: confidence=99, [579, 363, 22, 25] (587,371) (597,371) (593,376) (588,382) (596,382)
face 1: confidence=99, [848, 129, 20, 25] (850,139) (858,140) (852,145) (851,149) (857,150)

【人脸检测】ubuntu16.04编译libfacedetection_javascript_03