Best articles to start learning about edge detection/image recognition

后端 未结 4 1564
我在风中等你
我在风中等你 2021-01-30 03:33

I am involved in a personal project which will require pretty extensive knowledge of edge detection and image segmentation/object recognition.

I know the importance of p

相关标签:
4条回答
  • 2021-01-30 04:00

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

    • for edge detection check out lecture 3: Features and Linear Filters and lecture 5: Advanced Image Features (ppt)
    • for advanced segmentation techniques check out lecture 12: Segmentation (ppt) (perhaps a bit too advanced if you're new to computer vision)

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

    0 讨论(0)
  • 2021-01-30 04:03

    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.

    0 讨论(0)
  • 2021-01-30 04:16

    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.

    0 讨论(0)
  • 2021-01-30 04:18

    I found the series by Christian Graus on Code Project to be useful:

    Image Processing for Dummies with C# and GDI+ Part 1 - Per Pixel Filters
    Image Processing for Dummies with C# and GDI+ Part 2 - Convolution Filters
    Image Processing for Dummies with C# and GDI+ Part 3 - Edge Detection Filters
    Image Processing for Dummies with C# and GDI+ Part 4 - Bilinear Filters and Resizing
    Image Processing for Dummies with C# and GDI+ Part 5 - Displacement filters, including swirl
    Image Processing for Dummies with C# and GDI+ Part 6 - The HSL color space

    0 讨论(0)
提交回复
热议问题