Line detection


In image processing, line detection is an algorithm that takes a collection of n edge points and finds all the lines on which these edge points lie. The most popular line detectors are the Hough transform and convolution-based techniques.

Hough transform

The Hough transform can be used to detect lines and the output is a parametric description of the lines in an image, for example ρ = r cos + c sin. If there is a line in a row and column based image space, it can be defined ρ, the distance from the origin to the line along a perpendicular to the line, and θ, the angle of the perpendicular projection from the origin to the line measured in degrees clockwise from the positive row axis. Therefore, a line in the image corresponds to a point in the Hough space. The Hough space for lines has therefore these two dimensions θ and ρ, and a line is represented by a single point corresponding to a unique set of these parameters. The Hough transform can then be implemented by choosing a set of values of ρ and θ to use. For each pixel in the image, compute r cos + c sin for each values of θ, and place the result in the appropriate position in the array. At the end, the values of with the highest values in the array will correspond to strongest lines in the image

Convolution">Kernel (image processing)">Convolution-based technique

In a convolution-based technique, the line detector operator consists of a convolution masks tuned to detect the presence of lines of a particular width n and a θ orientation. Here are the four convolution masks to detect horizontal, vertical, oblique, and oblique lines in an image.
a) Horizontal mask
Vertical
Oblique
Oblique
In practice, masks are run over the image and the responses are combined given by the following equation:
R = max|, |R2 |, |R3 |, |R4
If R > T, then discontinuity'''
As can be seen below, if mask is overlay on the image, multiply the coincident values, and sum all these results, the output will be the. For example, ++ + ++ + ++ = 6 pixels on the second row, second column in the starting from the upper left corner of the horizontal lines. page 82

Example

These masks above are tuned for light lines against a dark background, and would give a big negative response to dark lines against a light background.

Code example

The code was used to detect only the vertical lines in an image using Matlab and the result is below. The original image is the one on the top and the result is below it. As can be seen on the picture on the right, only the vertical lines were detected


clear all
clc
% this MATLAB program will only detect vertical lines in an image
building = imread; % This will upload the image building
tol = 5; % define a tolerance in the angle to account for noise or edge
% that may look vertical but when the angle is computed
% it may not appear to be
= imgradient;
out = ;
%this part will filter the line
out_filter = bwareaopen;
figure, imshow, title;
figure, imshow, title;