Home
Contact
Sitemap
Bookmark us
Home
Services
Products
Biometrics
eFinance
Company
The Hough Transform
The Hough transform is a method that, in theory, can be used to find features of any shape in an image. In practice it is only generally used for finding straight lines or circles. The computational complexity of the method grows rapidly with more complex shapes.
Assume we have some data points in an image which are perhaps the result of an edge detection process, or boundary points of a binary blob. We wish to recognise the points that form a straight line.
Consider a point (
x
i
,
y
i
) in the image. The general equation of a line is
y
=
ax
+
b
.
There are infinitely many lines that pass through this point, but they all satisfy the condition
y
i
=
ax
i
+
b
for varying
a
and
b
.
We can rewrite this equation as
b
= -
x
i
a
+
y
i
,
and plot the variation of
a
and
b
.
If we divide parameter space into a number of discrete accumulator cells we can collect `votes' in
a b
space from each data point in
x y
space. Peaks in
a b
space will mark the equations of lines of co-linear points in
x y
space.
However, we have a problem with using
y
=
ax
+
b
to represent lines when the line is vertical. In that case
and our parameter space is unbounded (we would need a very large computer to store our parameter accumulator array!)
An alternative representation of a line is given by
where
r
is the distance of the line from the origin and
theta
is the angle between this perpendicular and the x-axis. Our parameter space is now in
and
r
, where
and
r
is limited by the size of the image.
As before, peaks in the accumulator array mark the equations of significant lines.
In theory any kind of curve can be detected if you can express it as a function of the form
For example a circle can be represented as
(
x
-
a
)
2
+ (
y
-
b
)
2
-
r
2
= 0.
One then has to work in
n
dimensional parameter space (three dimensional space for a circle).
Hough Transforms
One powerful global method for detecting edges is called the
Hough transform
.
Let us suppose that we are looking for straight lines in an image.
If we take a point (
x
',
y
') in the image,
all
lines which pass through that pixel have the form
for varying values of
m
and
c
. See Fig.
30
.
Fig.
30
Lines through a point
However, this equation can also be written as
where we now consider
x
' and
y
' to be constants, and
m
and
c
as varying.
This is a straight line on a graph of
c
against
m
as shown in Fig.
31
.
Each different
line
through the point (
x
',
y
') corresponds to one of the
points
on the line in (
m
,
c
) space.
Fig.
31
Y = mX + b line model
Now consider two pixels
p
and
q
in (
x
,
y
) space which lie on the same line.
For each pixel, all of the possible lines through it are represented by a single line in (
m
,
c
) space.
Thus the single line in (
x
,
y
) space which goes through both pixels lies on the intersection of the two lines representing
p
and
q
in (
m
,
c
) space, as illustrated by Fig.
32
.
Fig.
32
Points on the same line
Taking this one step further,
All
pixels which lie on the same line in (
x
,
y
) space are represented by lines which all pass through a single point in (
m
,
c
) space.
The single point through which they all pass gives the values of
m
and
c
in the equation of the line
y
=
mx
+
c
.
To detect straight lines in an image, we do:
Quantise (
m
,
c
) space into a two-dimensional array
A
for appropriate steps of
m
and
c
.
Initialise all elements of
A
(
m
,
c
) to zero.
For each pixel (
x
',
y
') which lies on some edge in the image, we add 1 to all elements of
A
(
m
,
c
) whose indices
m
and
c
satisfy
y
'=
mx
'+
c
.
Search for elements of
A
(
m
,
c
) which have large values -- Each one found corresponds to a line in the original image.
One useful property of the Hough transform is that the pixels which lie on the line need not all be contiguous.
For example, all of the pixels lying on the two dotted lines in Fig.
33
will be recognised as lying on the same straight line. This can be very useful when trying to detect lines with short breaks in them due to noise, or when objects are partially occluded as shown.
Fig.
33
Non-contiguous pixels on the same line
On the other hand, it can also give misleading results when objects happen to be aligned by chance, as shown by the two dotted lines in Fig.
34
.
Fig.
34
Aligned objects
Indeed, this clearly shows that one disadvantage of the Hough transform method is that it gives an
infinite line
as expressed by the pair of
m
and
c
values, rather than a finite
line segment
with two well-defined endpoints.
One practical detail is that the
y
=
mx
+
c
form for representing a straight line breaks down for vertical lines, when
m
becomes infinite.
To avoid this problem, it is better to use the alternative formulation given earlier,
as a means of describing straight lines.
Note, however, that a point in (
x
,
y
) space is now represented by a curve in
space rather than a straight line.
Otherwise, the method is unchanged.
The Hough transform can be used to detect other shapes in an image as well as straight lines.
For example, if we wish to find circles, with equation
Now:
Every point in (
x
,
y
) space corresponds to a surface in (
a
,
b
,
r
) space (as we can vary any two of
a
,
b
and
r
, but the third is determined by Eqn.
53
).
The basic method is, thus, modified to use a three-dimensional array
A
(
a
,
b
,
r
),
All points in it which satisfy the equation for a circle are incremented.
In practice, the technique takes rapidly increasing amounts of time for more complicated curves as the number of variables (and hence the number of dimensions of
A
) increases
So the method is really only of use for simple curves.