Difference between revisions of "Hough Transform"
Jump to navigation
Jump to search
(added description of pros/cons and inputs/outputs) |
m (added Wikipedia link) |
||
Line 1: | Line 1: | ||
A good description is on [http://homepages.inf.ed.ac.uk/rbf/HIPR2/hough.htm this page]. | A good description is on [http://homepages.inf.ed.ac.uk/rbf/HIPR2/hough.htm this page]. | ||
+ | |||
+ | Wikipedia also has its own [http://en.wikipedia.org/wiki/Hough_transform Hough Transform article]. | ||
== Pros == | == Pros == |
Revision as of 11:23, 21 November 2005
A good description is on this page.
Wikipedia also has its own Hough Transform article.
Pros
- Able to detect dashed lines
Cons
- Can only detect straight lines, making it almost useless for curved lines - which will probably be common
- Useless for detecting curved lines
- Designed to detect lines as opposed to detecting line segments
- Computationally expensive (when compared to simple filters)
Input
- A binary/grayscale image hilighting the line-pixels in the input image
Output
- A list of the positions/orientations of the lines detected in the input image