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 ...
随机推荐
- 携程Ctrip DAL的学习1
携程Ctrip DAL的学习 1 本人net开发菜鸟,原理请自行看github的官网源码. 我这里是简单的使用(helloworld的水平). Ctrip DAL是携程框架部开发的数据库访问框架,支持 ...
- DuiLib 源码分析之CDuiString
duilib是一个比较常见的界面库,闲来无事看看别人写的代码,跟自己写的一比, 才看到了差距呀,感觉自己写的乱七八糟,keep moving CduiString是duilib提供的一个字符串类,功能 ...
- Oracle 修改文件所有者
# chown -R gpadmin /usr/local/greenplum-db # chgrp -R gpadmin /usr/local/greenplum-db
- 程序设计入门——C语言 第6周编程练习 1 分解质因数(5分)
1 分解质因数(5分) 题目内容: 每个非素数(合数)都可以写成几个素数(也可称为质数)相乘的形式,这几个素数就都叫做这个合数的质因数.比如,6可以被分解为2x3,而24可以被分解为2x2x2x3. ...
- 如何选择 compileSdkVersion, minSdkVersion 和 targetSdkVersion
对这几个概念模模糊糊,看到一篇文章就记录下来. 当你发布一个应用之后,(取决于具体的发布时间)可能没过几个月 Android 系统就发布了一个新版本.这对你的应用意味着什么,所有东西都不能用了?别担心 ...
- C# 拆箱与装箱 要严格控制,数量多起来严重影响效率
int i = 5; object o = i; int j = (int)o; IComparer x = 5; 1. o的对象必须为一个引用,而数字5不是,则发生了装箱: 运行时将在堆上创建一个包 ...
- hibernate hql
hibernate在使用hql进行select count(*) from ObjectA left join fetch apath 时会报错,多余的left join去掉即可.
- Working with Data » Getting started with ASP.NET Core and Entity Framework Core using Visual Studio » 更新关系数据
Updating related data¶ 7 of 7 people found this helpful The Contoso University sample web applicatio ...
- 支撑双十一的,不仅仅是AliSQL,也不仅仅是Oceanbase
全棉时代,作为稳健医疗集团的全资子公司,传承了稳健医疗集团在医用棉制品行业20年的专业技术和生产经验,以其独创的 "全棉水刺无纺布专利工艺"为核心技术载体,成功实现了医用产品向民用 ...
- CSS3图片倒影技术实现及原理
CSS3图片倒影技术实现及原理 目前为止我们已经探讨了很多CSS3中的新功能和新特征.除了上面这些,实际上还有很多CSS新属性并未包含进CSS3官方标准中,像谷歌浏览器或火狐浏览器等都会利用CSS的浏 ...