mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-08 20:48:46 +08:00
Fix geometric example
This commit is contained in:
@@ -33,14 +33,14 @@ First we create a transformation using explicit parameters:
|
||||
|
||||
tform = tf.SimilarityTransform(scale=1, rotation=math.pi / 2,
|
||||
translation=(0, 1))
|
||||
print(tform.matrix_)
|
||||
print(tform.params_)
|
||||
|
||||
"""
|
||||
Alternatively you can define a transformation by the transformation matrix
|
||||
itself:
|
||||
"""
|
||||
|
||||
matrix = tform.matrix_.copy()
|
||||
matrix = tform.params_.copy()
|
||||
matrix[1, 2] = 2
|
||||
tform2 = tf.SimilarityTransform(matrix)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user