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. PAT_A1075#PAT Judge

    Source: PAT A1075 PAT Judge (25 分) Description: The ranklist of PAT is generated from the status lis ...

  2. 你真的懂return吗?

    递归算法中什么时候用return啥时候不用呢? 使用2个例子来说明:快速排序和二分查找 # 二分查找def binarySearch (arr, l, r, x): # 基本判断 if r >= ...

  3. js实现禁止页面拖拽图片

    document.ondragstart = function() {        return false;};

  4. Servilet初步

    以http://locahost:8080/......开头,或者以/开头,都是绝对路径以路径开头:相对路径 路径/路径 Servlet执行流程:(只用自己编写执行的代码,执行的细节全是tomcat封 ...

  5. MySQL在win10以及linux下数据库的备份以及还原

    MySQL在win环境或者linux下的命令都是一样的,只是路径不一致而已 MySQL的备份 (非必须)命令行进入MySQL的bin目录 输入命令:mysqldump -u userName -p d ...

  6. k小子串 SPOJ - SUBLEX 2

    题意: 求字典序第K大的子串 题解: 先求出后缀自动机对应节点 // 该节点后面所形成的自字符串的总数 然后直接模拟即可 #include <set> #include <map&g ...

  7. lca 倍增模版

    ; void dfs(int u,int fa){ d[u]=d[fa]+; p[u][]=fa; ;i<POW;i++) p[u][i]=p[p[u][i-]][i-]; int sz=edg ...

  8. 笔记39 Spring Web Flow——订单流程(收集顾客信息)

    如果你曾经订购过披萨,你可能会知道流程.他们首先会询问你的电 话号码.电话号码除了能够让送货司机在找不到你家的时候打电话给 你,还可以作为你在这个披萨店的标识.如果你是回头客,他们可以 使用这个电话号 ...

  9. vue app外卖(5) 使用swiper 进行图片轮播

    1.查看swiper 文档 https://www.swiper.com.cn/usage/index.html 2. 下载 npm install --save swiper 3.在页面引入 imp ...

  10. 由 15.01升级到 16.04之后,无法启动mysql

    参考 16.04 Distribution Upgrade - cannot start MySQL server,然后找到了16.04 upgrade broke mysql-server 我由 1 ...