Best articles to start learning about edge detection/image recognition

孤人 提交于 2019-12-02 14:19:13

I would suggest looking for good computer vision course slides, such as these Stanford one:

In general I find interesting materials by googling university sites for powerpoint presentations on any given subject: computer vision site:edu filetype:ppt

You will probably want to make extensive use of OpenCv: http://opencv.willowgarage.com/wiki/Welcome

Many of the algorithms that you need are already implemented in OpenCv. So your first priority should be to LEARN as much about computer vision as possible, probably from books on the topic not online resources. You will find that online resources are great places to check up on cutting edge research or extremely basic techniques, the inbetween introductory material that is very much needed is usually missing.

I did some very basic edge detection for a uni project a while back. The algorithms that I prototyped were Laplace and Sobel.

This is the page that got me most of the info I needed to implement the algorithm:

http://www.pages.drexel.edu/~weg22/edge.html

I have some C++ source code that might be a bit scary from back in the day if you are interested.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!