Content deleted Content added
Vpindarico (talk | contribs) m The statement "Only three points ar needed to fully determine an ellipse" was formally wrong since five points are needed instead. In my opinion, to avoid confusion it was necessary to anticipate what said later: we are using also the tangents. |
Matt Heard (talk | contribs) m Minor copyedit. |
||
Line 5:
==Motivation==
Although Hough transform (HT) has been widely used in curve detection, it has two major drawbacks:<ref>L. Xu, E. Oja, and P. Kultanan, "A new curve detection method: Randomized Hough transform (RHT)", ''Pattern Recog. Lett.'' 11, 1990, 331-338.</ref>
==Implementation==
In comparison with HT, RHT takes advantage of the fact that some analytical curves can be fully determined by a certain number of points on the curve. For example, a straight line can be determined by two points, and an ellipse (or a circle) can be determined by three points.
▲1) Fit ellipses with randomly selected points;
▲2) Update the accumulator array and corresponding scores;
▲3) Output the ellipses with scores higher than some predefined threshold.
===Ellipse fitting===
|