RANSAC

RANSAC

RANSAC is an abbreviation for "RANdom SAmple Consensus". It is an iterative method to estimate parameters of a mathematical model from a set of observed data which contains outliers. It is a non-deterministic algorithm in the sense that it produces a reasonable result only with a certain probability, with this probability increasing as more iterations are allowed. The algorithm was first published by Fischler and Bolles in 1981.

A basic assumption is that the data consists of "inliers", i.e., data whose distribution can be explained by some set of model parameters, and "outliers" which are data that do not fit the model. In addition to this, the data can be subject to noise. The outliers can come, e.g., from extreme values of the noise or from erroneous measurements or incorrect hypotheses about the interpretation of data. RANSAC also assumes that, given a (usually small) set of inliers, there exists a procedure which can estimate the parameters of a model that optimally explains or fits this data.

Example

A simple example is fitting of a 2D line to set of observations. Assuming that this set contains both inliers, i.e., points which approximately can be fitted to a line, and outliers, points which cannot be fitted to this line, a simple least squares method for line fitting will in general produce a line with a bad fit to the inliers. The reason is that it is optimally fitted to all points, including the outliers. RANSAC, on the other hand, can produce a model which is only computed from the inliers, provided that the probability of choosing only inliers in the selection of data is sufficiently high. There is no guarantee for this situation, however, and there are a number of algorithm parameters which must be carefully chosen to keep the level of probability reasonably high.


Overview

The input to the RANSAC algorithm is a set of observed data values, a parameterized model which can explain or be fitted to the observations, and some confidence parameters.

RANSAC achieves its goal by iteratively selecting a random subset of the original data. These data are "hypothetical inliers" and this hypothesis is then tested as follows:

# A model is fitted to the hypothetical inliers, i.e. all free parameters of the model are reconstructed from the data set.
# All other data are then tested against the fitted model and, if a point fits well to the estimated model, also considered as a hypothetical inlier.
# The estimated model is reasonably good if sufficiently many points have been classified as hypothetical inliers.
# The model is reestimated from all hypothetical inliers, because it has only been estimated from the initial set of hypothetical inliers.
# Finally, the model is evaluated by estimating the error of the inliers relative to the model.

This procedure is repeated a fixed number of times, each time producing either a model which is rejected because too few points are classified as inliers or a refined model together with a corresponding error measure. In the latter case, we keep the refined model if its error is lower than the last saved model.

The algorithm

The generic RANSAC algorithm, in pseudocode, works as follows:

input: data - a set of observations model - a model that can be fitted to data n - the minimum number of data required to fit the model k - the maximum number of iterations allowed in the algorithm t - a threshold value for determining when a datum fits a model d - the number of close data values required to assert that a model fits well to data output: best_model - model parameters which best fit the data (or nil if no good model is found) best_consensus_set - data point from which this model has been estimated best_error - the error of this model relative to the data iterations := 0 best_model := nil best_consensus_set := nil best_error := infinity while iterations < k maybe_inliers := n randomly selected values from data maybe_model := model parameters fitted to maybe_inliers consensus_set := maybe_inliers for every point in data not in maybe_inliers if point fits maybe_model with an error smaller than t add point to consensus_set if the number of elements in consensus_set is > d "(this implies that we may have found a good model," "now test how good it is)" better_model := model parameters fitted to all points in consensus_set this_error := a measure of how well better_model fits these points if this_error < best_error "(we have found a model which is better than any of the previous ones," "keep it until a better one is found)" best_model := better_model best_consensus_set := consensus_set best_error := this_error increment iterations return best_model, best_consensus_set, best_error

Possible variants of the RANSAC algorithm includes
* Break the main loop if a sufficiently good model has been found, that is, one with sufficiently small error. May save some computation time at the expense of an additional parameter.
* Compute this_error directly from maybe_model without re-estimating a model from the consensus set. May save some time at the expense of comparing errors related to models which are estimated from a small number of points and therefore more sensitive to noise.

The parameters

The values of parameters "t" and "d" have to be determined from specific requirements related to the application and the data set, possibly based on experimental evaluation. The parameter "k" (the number of iterations), however, can be determined from a theoretical result. Let "p" be the probability that the RANSAC algorithm in some iteration selects only inliers from the input data set when it chooses the "n" points from which the model parameters are estimated. When this happens, the resulting model is likely to be useful so "p" gives the probability that the algorithm produces a useful result. Let "w" be the probability of choosing an inlier each time a single point is selected, that is,

:"w" = number of inliers in data / number of points in data

A common case is that w is not well known beforehand, but some rough value can be given. Assuming that the "n" points needed for estimating a model are selected independently, w^{n} is the probability that all "n" points are inliers and 1 - w^{n} is the probability that at least one of the "n" points is an outlier, a case which implies that a bad model will be estimated from this point set. That probability to the power of "k" is the probability that the algorithm never selects a set of "n" points which all are inliers and this must be the same as 1 - p. Consequently,

:1 - p = (1 - w^n)^k

which, after taking the logarithm of both sides, leads to

:k = frac{log(1 - p)}{log(1 - w^n)}

It should be noted that this result assumes that the "n" data points are selected independently, that is, a point which has been selected once is replaced and can be selected again in the same iteration. This is often not a reasonable approach and the derived value for "k" should be taken as an upper limit in the case that the points are selected without replacement. For example, in the case of finding a line which fits the data set illustrated in the above figure, the RANSAC algorithm typically chooses 2 points in each iteration and computes maybe_model as the line between the points and it is then critical that the two points are distinct.

To gain additional confidence, the standard deviation or multiples thereof can be added to k. The standard deviation of k is defined as:SD(x) = frac{sqrt{1 - w^n{w^n}

Advantages and disadvantages

An advantage of RANSAC is its ability to do robust estimation of the model parameters, i.e., it can estimate the parameters with a high degree of accuracy even when significant amount of outliers are present in the data set. A disadvantage of RANSAC is that there is no upper bound on the time it takes to compute these parameters. When an upper time bound is used (a maximum number of iterations) the solution obtained may not be the most optimal one. Another disadvantage of RANSAC isthat it requires the setting of problem-specific thresholds.

RANSAC can only estimate one model for a particular data set. As for any one-model approach when two (or more) models exist, RANSAC may fail to find either one.

Applications

The RANSAC algorithm is often used in computer vision, e.g., to simultaneously solve the correspondence problem and estimate the fundamental matrix related to a pair of stereo cameras.

References

* cite journal
author=Martin A. Fischler and Robert C. Bolles
title=Random Sample Consensus: A Paradigm for Model Fitting with Applications to Image Analysis and Automated Cartography
journal=Comm. of the ACM
volume=24
pages=381–395
year=1981
month=June
doi=10.1145/358669.358692

*cite book
author=David A. Forsyth and Jean Ponce
title=Computer Vision, a modern approach
year=2003
publisher=Prentice Hall
isbn= ISBN 0-13-085198-1

*cite book
author=Richard Hartley and Andrew Zisserman
title=Multiple View Geometry in Computer Vision
year=2003
publisher=Cambridge University Press
edition=2nd edition

* cite journal
author=P.H.S. Torr, and D.W. Murray
title=The Development and Comparison of Robust Methods for Estimating the Fundamental Matrix
journal=International Journal of Computer Vision
volume=24
pages=271–300
year=1997
doi=10.1023/A:1007927408552

External links

* [http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=18555&objectType=file RANSAC Toolbox for Matlab] . A research (and didactic) oriented toolbox to explore the RANSAC algorithm in Matlab. It is highly configurable and contains the routines to robustly fit homographies and lines.
* [http://cmp.felk.cvut.cz/ransac-cvpr2006/ 25 Years of RANSAC Workshop]


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • RANSAC — est une abréviation pour RANdom SAmple Consensus . Il s agit d une méthode itérative pour estimer les paramètres d un modèle mathématique à partir d un ensemble de données observées qui contient des valeurs aberrantes (« outliers »). Il …   Wikipédia en Français

  • RANSAC — RANSAC  (аббр. RANdom SAmple Consensus) стабильный метод оценки параметров модели на основе случайных выборок. Схема RANSAC устойчива к зашумлённости исходных данных. Метод был предложен в 1981 году Фишлером и Боллесом. Часто возникает… …   Википедия

  • RANSAC — steht für ein mathematisches Schätzverfahren, siehe RANSAC Algorithmus die russisch amerikanische Gutachterkommission für nukleare Sicherheit, siehe Russian American Nuclear Security Advisory Council Diese Seite ist eine Begriffskl …   Deutsch Wikipedia

  • RANSAC-Algorithmus — RANSAC (englisch random sample consensus, deutsch etwa „Übereinstimmung mit einer zufälligen Stichprobe“) ist ein Algorithmus zur Schätzung eines Modells innerhalb einer Reihe von Messwerten mit Ausreißern und groben Fehlern. Aufgrund seiner …   Deutsch Wikipedia

  • LO-RANSAC — RANSAC (Random Sample Consensus, deutsch etwa „Übereinstimmung mit einer zufälligen Stichprobe“) ist ein Algorithmus zur Detektion von Ausreißern und groben Fehlern innerhalb einer Reihe von Messwerten. Aufgrund seiner Robustheit wird er vor… …   Deutsch Wikipedia

  • Random Sample Consensus — RANSAC (Random Sample Consensus, deutsch etwa „Übereinstimmung mit einer zufälligen Stichprobe“) ist ein Algorithmus zur Detektion von Ausreißern und groben Fehlern innerhalb einer Reihe von Messwerten. Aufgrund seiner Robustheit wird er vor… …   Deutsch Wikipedia

  • 3D single object recognition — In computer vision, 3D single object recognition involves recognizing and determining the pose of user chosen 3D object in a photograph or range scan. Typically, an example of the object to be recognized is presented to a vision system in a… …   Wikipedia

  • Kernstrahlgeometrie — Zwei Kameras nehmen eine Szene auf. Die Epipolargeometrie beschreibt die Beziehung zwischen den beiden Bildern. Die Epipolargeometrie (selten auch Kernstrahlgeometrie) ist ein mathematisches Modell aus der Geometrie, das die geometrischen… …   Deutsch Wikipedia

  • Stereoanalyse — Zwei Kameras nehmen eine Szene auf. Die Epipolargeometrie beschreibt die Beziehung zwischen den beiden Bildern. Die Epipolargeometrie (selten auch Kernstrahlgeometrie) ist ein mathematisches Modell aus der Geometrie, das die geometrischen… …   Deutsch Wikipedia

  • Pontcarral, Colonel d'Empire — est un film français de Jean Delannoy, sorti en 1942. Pontcarral, colonel d Empire Réalisation Jean Delannoy Scénario Alberic Cahuet, Bernard Zimmer Musique Louis Beydts Décors Serge Pimenoff Costumes …   Wikipédia en Français

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”