Machine  Learning
1. Deep Learning
imagenet classification with deep convolutional neural networks. 2012 ppt
M.D. Zeiler, R. Fergus, Visualizing and Understanding Convolutional Networks,  2013
Deep Convolutional Network Cascade for Facial Point Detection     2013
Scalable Object Detection using Deep Neural Networks 
Learning a Deep Convolutional Network for Image Super-Resolution   2014
DeepPose: Human Pose Estimation via Deep Neural Networks 
Learning Hierarchical Features for Scene Labeling. 2013  code  
Facial Landmark Detection by Deep Multi-task Learning.  (可能采用该文方法的另外一篇文章:http://www.uoguelph.ca/~gwtaylor/publications/gwtaylor_crv2014.pdf )
http://web.stanford.edu/class/cs294a/sparseAutoencoder.pdf;
http://papers.nips.cc/paper/4686-image-denoising-and-inpainting-with-deep-neural-networks.pdf

2、Random Forest
    1. Class-Specific Hough Forests for Object Detection.
    2.  Real time head pose estimation from consumer depth cameras. In PR, pages 101–110. 2011. G. Fanelli, T. Weise, J. Gall, and L.     Van Gool.
    3. Real-time facial feature detection using conditional regression forestsM. Dantone, J. Gall, G. Fanelli, and L. Van Gool. In CVPR, 2012
      看懂这3篇(第一篇是影响很大的一篇创新文章,后面的都是对第一篇的扩展应用),就完全掌握了random forest了!
     4. Unified Face Analysis by Iterative Multi-Output Random Forests     2014     (该文完全是文3的东西)

3. AAM  
       http://www.cs.cmu.edu/~efros/courses/AP06/Papers/matthews_ijcv_2004.pdf
       http://research.microsoft.com/en-us/um/people/jiansun/papers/cvpr10_facetrack.pdf

reading list的更多相关文章

  1. Reading C type declarations(引用http://unixwiz.net/techtips/reading-cdecl.html)

    Even relatively new C programmers have no trouble reading simple C declarations such as int foo[5]; ...

  2. Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:9001/api/size/get. (Reason: CORS header 'Access-Control-Allow-Origin' missing).

    Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http:/ ...

  3. Git Learning - By reading ProGit

    Today I begin to learn to use Git. I learn from Pro Git. And I recommend it which is an excellent bo ...

  4. MySQL远程连接丢失问题解决方法Lost connection to MySQL server at ‘reading initial communication packet’, system error: 0

    最近远程连接mysql总是提示 Lost connection 很明显这是连接初始化阶段就丢失了连接的错误 其实问题很简单,都是MySQL的配置文件默认没有为远程连接配置好,只需要更改下MySQL的配 ...

  5. 论文阅读(Weilin Huang——【AAAI2016】Reading Scene Text in Deep Convolutional Sequences)

    Weilin Huang--[AAAI2016]Reading Scene Text in Deep Convolutional Sequences 目录 作者和相关链接 方法概括 创新点和贡献 方法 ...

  6. Flesch Reading Ease -POJ3371模拟

    Flesch Reading Ease Time Limit: 1000MS Memory Limit: 65536K Description Flesch Reading Ease, a reada ...

  7. Mac下遇到 'reading initial communication packet’ 问题

    今天在开发过程中,一个单位跑的好好的项目,在家中的Mac下运行时,遇到了下面这个错误:   "Lost connection to MySQL server at 'reading init ...

  8. A log about Reading the memroy of Other Process in C++/WIN API--ReadProcessMemory()

    Memory, is a complex module in Programing, especially on Windows. This time, I use cpp with win wind ...

  9. Error: Cannot open main configuration file '//start' for reading! 解决办法

    当执行service nagios start启动nagios时,报错:Error: Cannot open main configuration file '//start' for reading ...

  10. Spring mvc 中使用ftl引用共通文件出错 FreeMarker template error: Error reading included file "/WEB-INF/ftl/common/errormessage.ftl"

    初次接触spring mvc,想做一个小的练习项目,结果在ftl文件中引用其它的共通ftl文件时出错.

随机推荐

  1. 【转】MYSQL 存储过程定时操作数据库

    这个涉及2个步骤,第一个就是建立存储过程: create procedure clear_table() begin drop database XXX end 第二步就是让其定时运行: 查看even ...

  2. C++ 类的多态一(virtual关键字--构造函数深刻理解)

    //virtual关键字--构造函数深刻理解 #include<iostream> using namespace std; /* C语言编译器,c++编译器全部是静态链编,就是一段一段代 ...

  3. 移动端上下滑动事件之--坑爹的touch.js

    原文   http://blog.csdn.net/minidrupal/article/details/39611605 移动端页面的盛行,微信的便利的页面推广等等,让越来越多的css3效果和htm ...

  4. 微软2016校园招聘4月在线笔试 hihocoder 1289 403 Forbidden

    时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描写叙述 Little Hi runs a web server. Sometimes he has to deny acces ...

  5. JavaScript------如何解决表单登录信息输入为空显示提示

    <form name="fname" method="post" action="../Home/Login" onsubmit=&q ...

  6. JVM难学?那是因为你没认真看完这篇文章(转)

    一:虚拟机内存图解 JAVA程序运行与虚拟机之上,运行时需要内存空间.虚拟机执行JAVA程序的过程中会把它管理的内存划分为不同的数据区域方便管理. 虚拟机管理内存数据区域划分如下图: 数据区域分类: ...

  7. python 之 多进程

    阅读目录 1. Process 2. Lock 3. Semaphore 4. Event 5. Queue 6. Pipe 7. Pool 序. multiprocessingpython中的多线程 ...

  8. Guava教程

    http://ifeve.com/google-guava/ github地址:https://github.com/google/guava

  9. Hessian接口测试

  10. POJ 3150 Cellular Automaton(矩阵快速幂)

    Cellular Automaton Time Limit: 12000MS Memory Limit: 65536K Total Submissions: 3504 Accepted: 1421 C ...