如需转载请标明出处:http://blog.csdn.net/itas109
QQ技术交流群:129518033
Openface是一个基于深度神经网络的开源人脸识别系统。该系统基于谷歌的文章FaceNet: A Unified Embedding for Face Recognition and Clustering。Openface是卡内基梅隆大学的 Brandon Amos主导的。
官方地址:http://cmusatyalab.github.io/openface/
代码:https://github.com/cmusatyalab/openface
系统:Ubuntu 14.04 64位桌面操作系统
参考:http://cmusatyalab.github.io/openface/setup/
此处不详述,如果要用普通用户,请自行测试。
参考文章:
http://blog.csdn.net/itas109/article/details/50679251
安装必要的程序,可以用下面的批处理,也可以一个一个的进行安装。
注意:
a.如果出现某一个安装失败的情况,可以一个一个的安装
b.提高pip安装速度
可以更换pip镜像加快下载速度
建立./pip/pip.conf,输入以下内容(或者其他可用镜像):
c.报错:SSLError: The read operation timed out
可以用下列指令将延时加长
a.安装依赖
b.安装
c.安装依赖
luarocks install $NAME, where $NAME
is as listed below.
dpnn
nn
csvigo
cunn (使用CUDA)
fblualib (仅为了训练DNN)
torchx (仅为了训练DNN)
命令行,按照需要安装:
d.验证是否安装依赖成功
用th命令验证
注意:
a.gitclone更新网络老中断
git submodule update --init –recursive
或者torch目录下的
Update.sh
建议用Update.sh解决
b.错误:
Cloning into'extra/luaffifb'...
remote:Counting objects: 918, done.
error: RPCfailed; result=56, HTTP code = 200| 0 bytes/s
fatal: Theremote end hung up unexpectedly
fatal: earlyEOF
fatal:index-pack failed
Clone of 'https://github.com/facebook/luaffifb' intosubmodule path 'extra/luaffifb' failed
解决:
opencv版本为2.4.11,下载地址:https://github.com/Itseez/opencv/archive/2.4.11.zip
编译参考:http://docs.opencv.org/2.4/doc/tutorials/introduction/linux_install/linux_install.html
a.指令下载:
b.解压:
c.编译:
d.验证
import cv2
dlib v18.16下载地址:https://github.com/davisking/dlib/releases/download/v18.16/dlib-18.16.tar.bz2
a.安装编译
b.确保
在a中最后一条命令中,确保路径在默认的Python路径,可以在Python解释器里面用sys.path查找
For the final command, make sure the directory is in your default Python path, which can be found withsys.path
in a Python interpreter.
c.验证
a.下载Openface
b.在Openface根目录执行
python2一定要确保dlib和opencv安装成功
c.获取模型
运行demo1:
./demos/compare.pyimages/examples/{lennon*,clapton*}
运行demo2:
./demos/classifier.py infermodels/openface/celeb-classifier.nn4.small2.v1.pkl ./images/examples/carell.jpg
运行demo3:
./demos/web/start-servers.sh
可用浏览器:
360浏览器极速模式
火狐浏览器
搜狗浏览器高速模式
不可用浏览器:
Chrome谷歌浏览器(可能与浏览器更新有关系,getUserMedia())
IE浏览器
如需转载请标明出处:http://blog.csdn.net/itas109
QQ技术交流群:129518033