“智能硬件-人脸识别”版本间的差异
来自iCenter Wiki
(以“ ===系统要求=== Ubuntu 14.04 以上 安装 opencv3 $ workon cv3-python27 $ git clone https://github.com/bytefish/facerec.git $ cd facerec/ $ cd py/ $...”为内容创建页面) |
|||
(1位用户的9个中间修订版本未显示) | |||
第1行: | 第1行: | ||
+ | == 实验1-FisherFaces == | ||
− | + | 使用一般机器学习进行人脸识别的算法。 | |
− | + | * 前期准备 | |
− | + | : Ubuntu 14.04 以上,安装 OpenCV | |
+ | |||
+ | * 使用过程 | ||
$ workon cv3-python27 | $ workon cv3-python27 | ||
第17行: | 第20行: | ||
$ python simple_videofacerec.py mymodel.pkl | $ python simple_videofacerec.py mymodel.pkl | ||
− | == | + | *参考链接 |
+ | |||
+ | # [http://www.bytefish.de/blog/fisherfaces/ Fisherfaces] | ||
+ | # [https://github.com/bytefish/facerec facerec] | ||
+ | # [http://bytefish.de/blog/face_detection_with_android/ Face Detection with the Android API] | ||
+ | # [https://github.com/bytefish/VideoFaceDetection VideoFaceDetection] | ||
+ | |||
+ | == 实验2-OpenFace == | ||
+ | |||
+ | 使用深度神经网络进行人脸识别(Face recognition with deep neural networks) | ||
− | [http:// | + | # [http://cmusatyalab.github.io/openface/ OpenFace] |
+ | # [https://github.com/cmusatyalab/openface Source Code] |
2017年1月24日 (二) 19:26的最后版本
实验1-FisherFaces
使用一般机器学习进行人脸识别的算法。
- 前期准备
- Ubuntu 14.04 以上,安装 OpenCV
- 使用过程
$ workon cv3-python27
$ git clone https://github.com/bytefish/facerec.git
$ cd facerec/ $ cd py/ $ cd apps/ $ cd videofacerec/
$ python simple_videofacerec.py mymodel.pkl
- 参考链接
实验2-OpenFace
使用深度神经网络进行人脸识别(Face recognition with deep neural networks)