人脸识别卷土重来

来源:互联网 发布:移民布里斯班后 知乎 编辑:程序博客网 时间:2024/05/05 10:02

出于某种神秘的原因,人脸识别在过去的 6-18个月里迎来一个新的小高潮,明显盖住了其他生物特征识别的风头,包括之前似乎被工业界高度认可的指纹识别(finger print)以及虹膜识别(iris recognition)。

SeetaFaceLib - 人脸检索系统

Xcode工程文件

  • SeetaFaceLib/XcodePro/DetectionAlignment/DetectionAlignment.xcodeproj

ld: library not found for:
-lboost_log
-lboost_serialization
-lboost_coroutine
-lboost_unit_test_framework
-lboost_random
-lboost_iostreams
-lboost_date_time
-lboost_container
-lboost_signals
-lboost_prg_exec_monitor
-lboost_wserialization
-lboost_exception
-lboost_test_exec_monitor
-lboost_math_tr1
-lboost_math_tr1l
-lboost_system
-lboost_graph
-lboost_math_c99
-lboost_math_c99f
-lboost_math_c99l
-lboost_timer
-lboost_chrono
-lboost_program_options
-lboost_regex

-lopencv_ocl.3.2.0
-lopencv_contrib.3.2.0
-lopencv_legacy.3.2.0 (opencv_legacy only exists in 2.x)
-lopencv_nonfree.3.2.0
-lopencv_ts

关于单独编译libviplnet.4.5.dylib

1) [./FaceIdentification/include/aligner.h:34:10: ‘common.h’ file not found]

  • move common.h to include folder

2) /src/test/test_face_recognizer.cpp:109:27: No member named ‘imread’ in namespace ‘cv’

  • include headers properly from opencv2
    • #include “opencv2/highgui/highgui.hpp”
    • #include “opencv2/imgproc/imgproc.hpp”
原创粉丝点击