From ff1c8c4376c5a542bb3b44f0bbf707f40ef95a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Thu, 9 Aug 2012 10:30:40 +0200 Subject: [PATCH] fix typo --- skimage/transform/_geometric.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skimage/transform/_geometric.py b/skimage/transform/_geometric.py index cb6392bc..efd11a29 100644 --- a/skimage/transform/_geometric.py +++ b/skimage/transform/_geometric.py @@ -160,7 +160,7 @@ class ProjectiveTransform(GeometricTransform): ] x.T = [a0 a1 a2 b0 b1 b2 c0 c1 c3] - In case of total least-squares the solutions of this homogeneous system + In case of total least-squares the solution of this homogeneous system of equations is the right singular vector of A which corresponds to the smallest singular value normed by the coefficient c3. @@ -388,7 +388,7 @@ class SimilarityTransform(ProjectiveTransform): ] x.T = [a0 a1 b0 b1 c3] - In case of total least-squares the solutions of this homogeneous system + In case of total least-squares the solution of this homogeneous system of equations is the right singular vector of A which corresponds to the smallest singular value normed by the coefficient c3. @@ -493,7 +493,7 @@ class PolynomialTransform(GeometricTransform): x.T = [a00 a10 a11 a20 a21 a22 ... ann b00 b10 b11 b20 b21 b22 ... bnn c3] - In case of total least-squares the solutions of this homogeneous system + In case of total least-squares the solution of this homogeneous system of equations is the right singular vector of A which corresponds to the smallest singular value normed by the coefficient c3.