CVPR历年Best Papers
作者:我爱机器学习
原文链接:CVPR历年Best Papers
CVPR (Computer Vision)(2000-2016) | |||
年份 | 标题 | 一作 | 一作单位 |
2016 | Deep Residual Learning for Image Recognition | Kaiming He | Microsoft Research |
2015 | DynamicFusion: Reconstruction and Tracking of Non-rigid Scenes in Real-Time | Richard A. Newcombe | University of Washington |
2014 | What Camera Motion Reveals About Shape with Unknown BRDF | Manmohan Chandraker | NEC Labs America |
2013 | Fast, Accurate Detection of 100,000 Object Classes on a Single Machine | Thomas Dean | |
2012 | A Simple Prior-free Method for Non-Rigid Structure-from-Motion Factorization | Yuchao Dai | Northwestern Polytechnical University |
2011 | Real-time Human Pose Recognition in Parts from Single Depth Images | Jamie Shotton | Microsoft Research |
2010 | Efficient Computation of Robust Low-Rank Matrix Approximations in the Presence of Missing Data usi… | Anders Eriksson | University of Adelaide |
2009 | Single Image Haze Removal Using Dark Channel Prior | Kaiming He | The Chinese University of Hong Kong |
2008 | Global Stereo Reconstruction under Second Order Smoothness Priors | Oliver Woodford | University of Oxford |
Beyond Sliding Windows: Object Localization by Efficient Subwindow Search | Chistoph H. Lampert | Max Planck Institut | |
2007 | Dynamic 3D Scene Analysis from a Moving Vehicle | Bastian Leibe | ETH Zurich |
2006 | Putting Objects in Perspective | Derek Hoiem | Carnegie Mellon University |
2005 | Real-Time Non-Rigid Surface Detection | Julien Pilet | École Polytechnique Fédérale de Lausanne |
2004 | Programmable Imaging using a Digital Micromirror Array | Shree K. Nayar | Columbia University |
2003 | Object Class Recognition by Unsupervised Scale-Invariant Learning | Rob Fergus | University of Oxford |
2001 | Morphable 3D models from video | Matthew Brand | Mitsubishi Electric Research Laboratories |
2000 | Real-Time Tracking of Non-Rigid Objects using Mean Shift | Dorin Comaniciu | Siemens Corporate Research |
CVPR历年Best Papers的更多相关文章
- ICML历年Best Papers
作者:我爱机器学习原文链接:ICML历年Best Papers ICML (Machine Learning)(1999-2016) 2016 Dueling Network Architecture ...
- SIGKDD历年Best Papers
作者:我爱机器学习原文链接:SIGKDD历年Best Papers SIGKDD(Data Mining)(1997-2016) 年份 标题 一作 一作单位 2016 FRAUDAR: Boundin ...
- paper 28 :一些常见常用数据库的下载网站集锦
做图像处理+模式识别的童鞋怎么可以没有数据库呢? 但是,如果自己做一个数据库,费时费力费钱先不说,关键是建立的数据库的公信力一般不会高,做出的算法也别人也不好比较,所以呢,下载比较权威的公共数据库还是 ...
- CVPR 2015 papers
CVPR2015 Papers震撼来袭! CVPR 2015的文章可以下载了,如果链接无法下载,可以在Google上通过搜索paper名字下载(友情提示:可以使用filetype:pdf命令). Go ...
- [转载]Three Trending Computer Vision Research Areas, 从CVPR看接下来几年的CV的发展趋势
As I walked through the large poster-filled hall at CVPR 2013, I asked myself, “Quo vadis Computer V ...
- 如何教你在NIPS会议上批量下载历年的pdf文档(另附04~14年NIPS论文下载链接)
如何获得NIPS会议上批量下载的链接? NIPS会议下载网址:http://papers.nips.cc/ a.点击打开上述网站,进入某一年的所有会议,例如2014年,如下图 b.然后对着当前网页点击 ...
- Computer Vision Tutorials from Conferences (3) -- CVPR
CVPR 2013 (http://www.pamitc.org/cvpr13/tutorials.php) Foundations of Spatial SpectroscopyJames Cogg ...
- Fine-Grained(细粒度) Image – Papers, Codes and Datasets
Table of contents Introduction Survey papers Benchmark datasets Fine-grained image recognition Fine- ...
- Official Program for CVPR 2015
From: http://www.pamitc.org/cvpr15/program.php Official Program for CVPR 2015 Monday, June 8 8:30am ...
随机推荐
- test homework ~ coverage about method printPrimes
/******************************************************* * Finds and prints n prime integers * Jeff ...
- Linux从程序到进程
作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! 在高级语言中,这些内存管理的细节对于用户来说不透明.在编程的时候,我们只需要记住上 ...
- setTimeout和setInterval的区别以及如何写出效率高的倒计时
1.setTimeout和setInterval都属于js中的定时器,可以规定延迟时间再执行某个操作,不同的是setTimeout在规定时间后执行完某个操作就停止了,而setInterval则可以一直 ...
- 深入理解js构造函数
JavaScript对象的创建方式 在JavaScript中,创建对象的方式包括两种:对象字面量和使用new表达式.对象字面量是一种灵活方便的书写方式,例如: ? 1 2 3 4 5 6 var o1 ...
- JQuery 绑定select标签的onchange事件,弹出选择的值,并实现跳转、传参
<script src="jquery.min.js" type="text/javascript"></script> <scr ...
- 关键字volatile
一个定义为volatile的变量是说这变量可能会被意想不到地改变,这样,编译器就不会去假设这个变量的值了.精确地说就是,优化器在用到这个变量时必须每次都小心地重新读取这个变量的值,而不是使用保存在寄存 ...
- iOS多线程
关于iOS多线程 概述 这篇文章中,我不会说多线程是什么.线程和进程的区别.多线程有什么用,当然我也不会说什么是串行.什么是并行等问题,这些我们应该都知道的. 在 iOS 中其实目前有 4 套多线程方 ...
- selenium提供了三种模式的断言:assert,verify,waitfor
Assert:失败时,该测试将终止 Verify:失败时,该测试继续执行,并将错误日志记录在日显示屏 Waitfor:等待某些条件变为真,一般使用在AJAX应用程序的测试 断言常用的有,具体见如下:a ...
- lua实现私有函数
本文是原创文章,如需转载,请注明文章出处 要用lua实现私有函数,关键就是使用metatable的特性来实现. Test.lua: local v = {};v.x = 100;v.y = 200; ...
- Redis入门学习笔记一
Redis 简要描述: 1. Redis 是啥 ? Redis 英文名称全称为: Remote Dictionary Server ,中译为远程字典服务器. 是一款区分于磁盘数据库如(Mysql)的 ...