From b2fa37d337138fd48719080d44e865b49e23c279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Fri, 1 Mar 2013 17:20:23 +0100 Subject: [PATCH] Fix typos --- skimage/measure/fit.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skimage/measure/fit.py b/skimage/measure/fit.py index 7aee1290..8335c069 100644 --- a/skimage/measure/fit.py +++ b/skimage/measure/fit.py @@ -170,7 +170,7 @@ class CircleModel(BaseModel): ''' def estimate(self, data): - '''Estimate line model from data using total least squares. + '''Estimate circle model from data using total least squares. Parameters ---------- @@ -310,7 +310,7 @@ class EllipseModel(BaseModel): ''' def estimate(self, data): - '''Estimate line model from data using total least squares. + '''Estimate circle model from data using total least squares. Parameters ---------- @@ -554,7 +554,7 @@ def ransac(data, model_class, min_samples, residual_threshold, >>> ransac_model, inliers = ransac(data, EllipseModel, 5, 3, max_trials=50) >>> # ransac_model._params, inliers - Should give the correct result estimated without the fauly data: + Should give the correct result estimated without the faulty data: [ 20.12762373, 29.73563061, 4.81499637, 10.4743584, 0.05217117]) [ 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,