Recursive RANSAC approach to find all straight lines in an image

Overview

In this article I have presented an approach to harness the power of the RANSAC algorithm to detect multiple lines in an image. RANAC is a robust line detection algorithm which iteratively creates line models using a subset of points. Ever model is evaluated for the total count of inlier points. An inlier is defined as a point which is within a specified threshold distance from the line. evaluates the how good the model fits. The text book implementation of the RANSAC algorithm produces a single line (if one exists). This is the line with the maximum outliers. In this article we explore how to improvise the traditional RANSAC algorithm by running it repetitively on the same image to find multiple straight lines.

Example - Noise free

A noise free image on the left and the lines detected using the recursive RANSAC approach on the right

Example - With salt pepper noise

Same image with some salt-pepper noise on the left and the lines detected using the recursive RANSAC approach on the right

An overview of RANSAC

This is not a detailed explanation of the RANSAC algorithm.

Consider the data points below

We have a mix of inliers (black) and outliers (red). We want to find the model of the straight line which fits the inliers

How does RANSAC algorithm help?

RANSAC is a simple voting-based algorithm that iteratively samples the population of points and find the subset of those lines which appear to conform a model. In this case, the model is a straight line.

Running RANSAC recursively- How it works?







Accompanying code

I have wrapped Scikit Learn's RANSAC implementation. As a stopping criteria, I am halting the iteration for further lines when no more inliers are left OR when RANSAC produces a line with a count of inliers below a certain threshold. This threshold is a configurable parameter. Consider this threshold as a means of eliminating undesired lines.

Conclusion and caveats

In my approach, I am eliminating the inlier points after every iteration. This could impact the discovery of the next line. Consider the situation when the region of intersection of 2 lines is heavily crowded and your discovery of line 1 has led to removal of points which could be potential inliers for the second line

The overall success of the recursive RANSAC approach is dependent on the stopping criterion. I have used the inlier count as a signal to stop. But this may not be best choice. Another choice could be the ration of inlier count to the length of the line segment. A very low value would indicate that the discovered line is too sparse to be of any practical value