mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-18 12:40:14 +08:00
DOC: remove wrong math tags
This commit is contained in:
@@ -344,9 +344,7 @@ class ProjectiveTransform(GeometricTransform):
|
||||
|
||||
class AffineTransform(ProjectiveTransform):
|
||||
|
||||
"""2D affine transformation of the form:
|
||||
|
||||
..:math:
|
||||
"""2D affine transformation of the form::
|
||||
|
||||
X = a0*x + a1*y + a2 =
|
||||
= sx*x*cos(rotation) - sy*y*sin(rotation + shear) + a2
|
||||
@@ -572,9 +570,7 @@ class PiecewiseAffineTransform(GeometricTransform):
|
||||
|
||||
|
||||
class SimilarityTransform(ProjectiveTransform):
|
||||
"""2D similarity transformation of the form:
|
||||
|
||||
..:math:
|
||||
"""2D similarity transformation of the form::
|
||||
|
||||
X = a0 * x - b0 * y + a1 =
|
||||
= m * x * cos(rotation) - m * y * sin(rotation) + a1
|
||||
@@ -744,9 +740,7 @@ class SimilarityTransform(ProjectiveTransform):
|
||||
|
||||
|
||||
class PolynomialTransform(GeometricTransform):
|
||||
"""2D transformation of the form:
|
||||
|
||||
..:math:
|
||||
"""2D transformation of the form::
|
||||
|
||||
X = sum[j=0:order]( sum[i=0:j]( a_ji * x**(j - i) * y**i ))
|
||||
Y = sum[j=0:order]( sum[i=0:j]( b_ji * x**(j - i) * y**i ))
|
||||
|
||||
Reference in New Issue
Block a user