惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
B
Blog
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 聂微东
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
U
Unit 42
J
Java Code Geeks
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
腾讯CDC

博客园 - Shicai Yang

Computer Vision Tutorials from Conferences (3) -- CVPR Computer Vision Tutorials from Conferences (2) -- ECCV Computer Vision Tutorials from Conferences (1) -- ICCV PhD Positions opening at University of Nevada, Reno (Wireless Networking / Cognitive Radio / Wireless Security) Best of Best系列(6)——SIGIR Best of Best系列(5)——IJCAI Best of Best系列(4)——AAAI Best of Best系列(3)——ICML Best of Best系列(2)——ICCV Best of Best系列(1)——CVPR 美国内华达大学招收计算机视觉方向MS/PhD学生,提供RA职位,每月1600$ Win7 64bit下MexOpenCV的安装,Matlab和C++&OpenCV的完美结合 Windows SDK 7.1 安装 Deep Learning at NIPS2012 Comics: do we know that we are not doing research in the wrong way? PCCS-RGB变换表 21世纪初最有影响力的30篇计算机视觉会议论文 Some Interesting Papers from NIPS 2012 21世纪初最有影响力的20篇计算机视觉期刊论文
Some Tips on Reading Research Papers
Shicai Yang · 2013-01-03 · via 博客园 - Shicai Yang

Some Tips on Reading Research Papers

by Mubarak Shah @UCF

1. You have to read the paper several times to understand it. When you read the paper first time, if you do not understand something do not get stuck, keep reading assuming you will figure out that later. When you read it the second time, you will understand much more, and the third time even more ...

2. Try first to get a general idea of the paper: What problem is being solved? What are the main steps? How can I implement the method?, even though I do not understand why each step is performed the way it is performed?

3. Try to relate the method to other methods you know, and conceptually find similarities and differences.

4. In the first reading it may be a good idea to skip the related work, since you do not know all other papers, they will confuse you more.

5. Do not use dictionary to just look up the meaning of technical terms like particle filters, maximum likelihood, they are concepts, dictionaries do not define them. They will tell you literal meanings, which may not be useful.

6. Try to understand each concept in isolation, and then integrate them to understand the whole paper. For instance, the paper on "Feature Integration with adaptive weights in a sequential Monte Carlo Tracker" is quite complex paper at the first look. Because it uses Monte Carlo, particle filter, likelihood etc. But try to understand the gist of it. The paper is about tracking, you know a few tracking methods already. It uses features: color histogram, templates in correlation, shape, etc. You know these features, and you have used them. The probabilities obtained by each features are combined (fused) to achieve tracking. How will you combine the probabilities or confidences of each features: multiply, add, apply threshold and then add ...

Particle filter/condensation method is already available in Intel Open CV library, use it, get some idea how it works, what are the parameters, then go back to read the paper again ... If you keep doing it for one week, you will understand a lot about that paper! Next week you do the second paper, and so on ...

From:http://crcv.ucf.edu/people/faculty/HowToRead.html