Skip to content

对FaceAlignment/src/test/face_alignment_test.cpp做了一些改动,使程序能够以命令行的方式支持多样化的人脸识别。这个程序的命令行格式是: 第一种: fa_test 源图片全路径 目标保存文件夹路径 [图片大小变幻的像素数] 其中[图片大小变幻的像素数]可以省略,省略的话默认是不缩放图片的大小。 第二种:fa_test 保存源图片全路径列表的文件路径 其中[保存源图片全路径列表的文件路径]是一个文本文件,里面是若干行第一种命令格式的字符串,用于批量识别图片。

License

Notifications You must be signed in to change notification settings

diandengpao/SeetaFaceEngine

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SeetaFace Engine

License

Description

SeetaFace Engine is an open source C++ face recognition engine, which can run on CPU with no third-party dependence. It contains three key parts, i.e., SeetaFace Detection, SeetaFace Alignment and SeetaFace Identification, which are necessary and sufficient for building a real-world face recognition applicaiton system.

  • SeetaFace Detection implements a funnel-structured (FuSt) cascade schema for real-time multi-view face detection, which achieves a good trade-off between detection accuracy and speed. State of the art accuracy can be achieved on the public dataset FDDB in high speed. See SeetaFace Detection for more details.

  • SeetaFace Alignment cascades several stacked auto-encoder networks to detect landmarks in real time (more than 200 fps on a single I7 desktop CPU), and achieves the state-of-the-art accuracy at least on some public datasets AFLW. See SeetaFace Alignment for more details.

  • SeetaFace Identification is a modification of AlexNet CNN for face recognition, with better performance in terms of both accuracy (97.1% on [LFW] (http://vis-www.cs.umass.edu/lfw/) and speed (about 120ms on a single I7 desktop CPU). See SeetaFace Identification for more details.

This face recognition engine is developed by Visual Information Processing and Learning (VIPL) group, Institute of Computing Technology, Chinese Academy of Sciences. The codes are written in C++ without dependence on any 3rd-party libraries. The open source is now released under BSD-2 license (see LICENSE for details), which means the codes can be used freely for both acedemic purpose and industrial products.

If you meet problems when using SeetaFace Engine, you may seek help from Configuration Documentation.

Contact Info

If you have any problem on SeetaFace Engine, please contact us by sending email to [email protected]. If Seetaface can not meet your business needs, please contact [email protected] for business cooperation. For more AI services, please visit SeetaTech official website: http://www.seetatech.com.

SeetaTech is a start-up company with the focus on computer vision technology, whose founding team comes from Visual Information Processing and Learning (VIPL) group, Institute of Computing Technology, Chinese Academy of Sciences. We have always been adhering to the development principle of "open source striving to develop AI", promoting the rapid integration of Artificial Intelligence and other industries.

Other Documentation

About

对FaceAlignment/src/test/face_alignment_test.cpp做了一些改动,使程序能够以命令行的方式支持多样化的人脸识别。这个程序的命令行格式是: 第一种: fa_test 源图片全路径 目标保存文件夹路径 [图片大小变幻的像素数] 其中[图片大小变幻的像素数]可以省略,省略的话默认是不缩放图片的大小。 第二种:fa_test 保存源图片全路径列表的文件路径 其中[保存源图片全路径列表的文件路径]是一个文本文件,里面是若干行第一种命令格式的字符串,用于批量识别图片。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 97.4%
  • CMake 1.5%
  • C 1.1%