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. HBase 永久RIT(Region-In-Transition)问题

    HBase 永久RIT(Region-In-Transition)问题:异常关机导致HBase表损坏和丢失,大量Regions 处于Offline状态,无法上线. 问题1:启动HBase时,HBase ...

  2. Gerrit(0): Install and Config

    Install(Ubuntu 17.04): apt-get install default-jre daemon [nginx] #Other OS: install openjdk8-jre [n ...

  3. linux 编译指定库、头文件的路径问题(转)

    1. 为什么会出现undefined reference to 'xxxxx'错误? 首先这是链接错误,不是编译错误,也就是说如果只有这个错误,说明你的程序源码本身没有问题,是你用编译器编译时参数用得 ...

  4. leetcode.哈希表.128最长连续序列-Java

    1. 具体题目 给定一个未排序的整数数组,找出最长连续序列的长度.要求算法的时间复杂度为 O(n). 示例: 输入: [100, 4, 200, 1, 3, 2] 输出: 4 解释: 最长连续序列是 ...

  5. 找到最大或者最小的N个元素

    heapq模块中的两个函数nlargest()和nsmallest() import heapq nums = [1,5,6,458,6,787,5,45,6] print(heapq.nlarges ...

  6. PHP之数据连接方法(二)

    首先API接口,无非就是通过该程序去处理数据的数据,及判断数据的准确性. 因此我们需要一个DBTool的操作方法. DBTool地址:https://github.com/gfarmhuang/DBT ...

  7. Django项目 BBS论坛

    BBS论坛 一.项目表分析 二.自定义form组件 三.注册功能 四.BBS论坛 登录功能

  8. json转字符串,json转list,json转pojo的工具类

    package com.loveshop.util; import java.util.List; import com.fasterxml.jackson.core.JsonProcessingEx ...

  9. 【颓废篇】Py:从零开始的poj自动提交

    之前学习了一些python的爬虫技术... 已经可以通过python来水blog的阅读量了 你知道的太多了, 然而你看我这个blog惨不忍睹的访问量, 有人吗? 有人吗? 今天突然又双叒叕心血来潮想写 ...

  10. ie兼容小知识点

    1.ie的滤镜特别针对ie使用css3的使用 (1)从css3渐变:filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=# ...