diff --git a/fsl/transform/affine.py b/fsl/transform/affine.py index c7fb71f2a0571f8a1318a7e7b84749cfa498a9f2..57007df779e22ca53b18055ed8ab6c519f6e319e 100644 --- a/fsl/transform/affine.py +++ b/fsl/transform/affine.py @@ -214,6 +214,7 @@ def decompose(xform, angles=True): # The process of finding the scaling factors and shear parameters # is interleaved. First, find s_x = |M'_1|. sx = np.sqrt(np.dot(M1, M1)) + M1 /= sx # Then, compute an initial value for the xy shear factor, # s_xy = M'_1 * M'_2. (this is too large by the y scaling factor).