Add title of wikipedia reference

This commit is contained in:
Johannes Schönberger
2013-05-06 11:43:52 +02:00
parent 63577f275c
commit f18eef6bc0
+2 -2
View File
@@ -494,7 +494,7 @@ def ransac(data, model_class, min_samples, residual_threshold,
* ``residuals(*data)``
min_samples : int
The minimum number of data points to fit a model.
The minimum number of data points to fit a model to.
residual_threshold : float
Maximum distance for a data point to be classified as an inlier.
is_data_valid : function, optional
@@ -519,7 +519,7 @@ def ransac(data, model_class, min_samples, residual_threshold,
References
----------
.. [1] http://en.wikipedia.org/wiki/RANSAC
.. [1] "RANSAC", Wikipedia, http://en.wikipedia.org/wiki/RANSAC
Examples
--------