活体人脸 项目日志
DAY1:初探原来的项目
- 函数result_multiview_reinforce :https://github.com/ShiqiYu/libfacedetection/blob/master/example/libfacedetect-example.cpp
- 环境配置 VS2013 opencv2410
- 预处理器-点击预处理器定义,编辑,加入_CRT_SECURE_NO_WARNINGS
-
如何在编译器(vs2013)里设置调用别人写好的lib和dll
步骤:
1.Tools->options->projects and solutions->VC++ directories
分别在包含文件,库文件填加了路径(这些路径只告诉编译器怎么找文件,没有说把那里面的文件加入工程.)(若不设置,编译报错:无法 打开***文件)
2.Project->properties->c/c++->general->additional include directories 添加包含文件
Project->properties->linker->general->additional library directories 添加库文件
Project->properties->linker->input->additional additional dependencies添加用到的lib (这一步也可以在代码中显示调用 #pragma comment(lib, "***.lib"))(若不添加,连接报错:无法解析的外部符号)
3.将dll文件拷贝到工程debug文件下(如果不拷贝,编译链接不报错,运行报错:无法找到***.dll)切记第三条.
day2
相关数据库:http://vcipl-okstate.org/pbvs/bench/index.html
http://nvie.ustc.edu.cn/contact.html
http://www.cbsr.ia.ac.cn/english/HFB%20Databases.asp
day3:
相关代码:https://github.com/jwyang/Person-Specific-Face-Anti-Spoofing
day 4:
lbp算法:http://blog.csdn.net/pi9nc/article/details/18623971