Face-Resources

Following is a growing list of some of the materials I found on the web for research on face recognition algorithm.

Papers

  1. DeepFace.A work from Facebook.

  2. FaceNet.A work from Google.

  3. One Millisecond Face Alignment with an Ensemble of Regression Trees. Dlib implements the algorithm.

  4. DeepID

  5. DeepID2

  6. DeepID3

  7. Learning Face Representation from Scratch

  8. Face Search at Scale: 80 Million Gallery

  9. A Discriminative Feature Learning Approach for Deep Face Recognition

  10. NormFace: L2 Hypersphere Embedding for Face Verification.* attention: model released !*

  11. SphereFace: Deep Hypersphere Embedding for Face Recognition

Datasets

  1. CASIA WebFace Database. 10,575 subjects and 494,414 images
  2. Labeled Faces in the Wild.13,000 images and 5749 subjects
  3. Large-scale CelebFaces Attributes (CelebA) Dataset 202,599 images and 10,177 subjects. 5 landmark locations, 40 binary attributes.
  4. MSRA-CFW. 202,792 images and 1,583 subjects.
  5. MegaFace Dataset 1 Million Faces for Recognition at Scale 690,572 unique people
  6. FaceScrub. A Dataset With Over 100,000 Face Images of 530 People.
  7. FDDB.Face Detection and Data Set Benchmark. 5k images.
  8. AFLW.Annotated Facial Landmarks in the Wild: A Large-scale, Real-world Database for Facial Landmark Localization. 25k images.
  9. AFW. Annotated Faces in the Wild. ~1k images. 10.3D Mask Attack Dataset. 76500 frames of 17 persons using Kinect RGBD with eye positions (Sebastien Marcel)
  10. Audio-visual database for face and speaker recognition.Mobile Biometry MOBIO http://www.mobioproject.org/
  11. BANCA face and voice database. Univ of Surrey
  12. Binghampton Univ 3D static and dynamic facial expression database. (Lijun Yin, Peter Gerhardstein and teammates)
  13. The BioID Face Database. BioID group
  14. Biwi 3D Audiovisual Corpus of Affective Communication. 1000 high quality, dynamic 3D scans of faces, recorded while pronouncing a set of English sentences.
  15. Cohn-Kanade AU-Coded Expression Database. 500+ expression sequences of 100+ subjects, coded by activated Action Units (Affect Analysis Group, Univ. of Pittsburgh.
  16. CMU/MIT Frontal Faces. Training set: 2,429 faces, 4,548 non-faces; Test set: 472 faces, 23,573 non-faces.
  17. AT&T Database of Faces 400 faces of 40 people (10 images per people)

Trained Model

  1. openface. Face recognition with Google's FaceNet deep neural network using Torch.

  2. VGG-Face. VGG-Face CNN descriptor. Impressed embedding loss.

  3. SeetaFace Engine. SeetaFace Engine is an open source C++ face recognition engine, which can run on CPU with no third-party dependence.

  4. Caffe-face - Caffe Face is developed for face recognition using deep neural networks.

    A Discriminative Feature Learning Approach for Deep Face Recognition[C]
    Yandong Wen, Kaipeng Zhang, Zhifeng Li*, Yu Qiao
    European Conference on Computer Vision. Springer International Publishing, 2016: 499-515.
  5. Norm-Face - Norm Face, finetuned from center-face and Light-CNN

  6. insightface ArcFace: Additive Angular Margin Loss for Deep Face Recognition

    @article{deng2018arcface,
    title={ArcFace: Additive Angular Margin Loss for Deep Face Recognition},
    author={Deng, Jiankang and Guo, Jia and Zafeiriou, Stefanos},
    journal={arXiv:1801.07698},
    year={2018}
    }

Tutorial

  1. Deep Learning for Face Recognition. Shiguan Shan, Xiaogang Wang, and Ming yang.

Software

  1. OpenCV. With some trained face detector models.
  2. dlib. Dlib implements a state-of-the-art of face Alignment algorithm.
  3. ccv. With a state-of-the-art frontal face detector
  4. libfacedetection. A binary library for face detection in images.
  5. SeetaFaceEngine. An open source C++ face recognition engine.

##Frameworks

  1. Caffe
  2. Torch7
  3. Theano
  4. cuda-convnet
  5. MXNET
  6. Tensorflow
  7. tiny-dnn

Miscellaneous

  1. faceswap Face swapping with Python, dlib, and OpenCV
  2. Facial Keypoints Detection Competition on Kaggle.
  3. An implementation of Face Alignment at 3000fps via Local Binary Features

Face-Resources的更多相关文章

  1. Xamarin+Prism开发详解二:Xaml文件如何简单绑定Resources资源文件内容

    我们知道在UWP里面有Resources文件xxx.resx,在Android里面有String.Xml文件等.那跨平台如何统一这些类别不一的资源文件以及Xaml设计文件如何绑定这些资源?应用支持多国 ...

  2. [免费了] SailingEase .NET Resources Tool (.NET 多语言资源编辑器)

    这是我2010年左右,写 Winform IDE (http://www.cnblogs.com/sheng_chao/p/4387249.html)项目时延伸出的一个小项目. 最初是以共享软件的形式 ...

  3. [Android]使用自定义JUnit Rules、annotations和Resources进行单元测试(翻译)

    以下内容为原创,欢迎转载,转载请注明 来自天天博客:http://www.cnblogs.com/tiantianbyconan/p/5795091.html 使用自定义JUnit Rules.ann ...

  4. [Erlang 0122] Erlang Resources 2014年1月~6月资讯合集

    虽然忙,有些事还是要抽时间做; Erlang Resources 小站 2014年1月~6月资讯合集,方便检索.      小站地址: http://site.douban.com/204209/   ...

  5. [Erlang 0114] Erlang Resources 小站 2013年7月~12月资讯合集

    Erlang Resources 小站 2013年7月~12月资讯合集,方便检索.     附 2013上半年盘点: Erlang Resources 小站 2013年1月~6月资讯合集    小站地 ...

  6. sqoop:Failed to download file from http://hdp01:8080/resources//oracle-jdbc-driver.jar due to HTTP error: HTTP Error 404: Not Found

    环境:ambari2.3,centos7,sqoop1.4.6 问题描述:通过ambari安装了sqoop,又添加了oracle驱动配置,如下: 保存配置后,重启sqoop报错:http://hdp0 ...

  7. Resources.Load加载文件返回null的原因

    1.文件夹都要放在Resources目录下 2.加载时photoName不需要扩展名 Texture2D t = Resources.Load<Texture2D>("Loadi ...

  8. 严重: Error starting static Resources java.lang.IllegalArgumentException:

    严重: Error starting static Resources java.lang.IllegalArgumentException: Document base E:\myworkspace ...

  9. (转载)android:android.content.res.Resources$NotFoundException: String resource ID #..

    android.content.res.Resources$NotFoundException: String resource ID #0x0 找不到资源文件ID #0x0 原因分析如下: 遇到这种 ...

  10. Sentiment Analysis resources

    Wikipedia: Sentiment analysis (also known as opinion mining) refers to the use of natural language p ...

随机推荐

  1. python 出现indentationError:expected an indented block!

    出现这个问题,代码一般是没问题的,剩下你要考虑: 1. 缩进对齐是否有问题 2. python脚本的格式是啥,如果你在linux上运行,编码需要是unix;  (大部分情况下,我们是在windows下 ...

  2. window_mysql踩坑

    https://blog.csdn.net/qq_37350706/article/details/81707862 先去官网下载点击的MySQL的下载 下载完成后解压 解压完是这个样子 配置系统环境 ...

  3. JMeter轻松实现大数据量AI图像识别接口测试

    ****************************************************************************** 本文主要介绍利用Jmeter进行AI图像识 ...

  4. NIO 源码分析(02-2) BIO 源码分析 Socket

    目录 一.BIO 最简使用姿势 二.connect 方法 2.1 Socket.connect 方法 2.2 AbstractPlainSocketImpl.connect 方法 2.3 DualSt ...

  5. mysql动态列--统计报表信息对比

    SET @sql = NULL; SELECT GROUP_CONCAT(DISTINCT CONCAT( 'MAX(IF(tmp.summary = ''', tp.summary, ''', tm ...

  6. 【踩坑】IDEA 设置 JVM 参数

    1.可视化界面设置 Run->Edit Configuration... 然后设置 2.配置文件设置 打开 IDEA 安装目录,看到有一个 bin 目录,其中有两个 vmoptions 文件,需 ...

  7. utmp, wtmp - 登 录 记 录(login records)

    SYNOPSIS[总览] #include DESCRIPTION[描述] utmp 文 件 用 于 记 录 当 前 系 统 用 户 是 哪 些 人. 但 是 实 际 的 人 数 可 能 比 这 个 ...

  8. 个人使用Viso绘制的简单神经网络实现原理图

  9. lterator遍历

    iterator是一种接口机制,为各种不同的数据结构提供统一的访问机制 作用: 1.为各种数据结构,提供一个统一的.简便的访问接口: 2.使得数据结构的成员能够按某种次序排列 3.ES6创造了一种新的 ...

  10. VS 解决方案

    //1.如果你的VS用到了环境变量,你在更改了环境变量路径后需要重启VS