We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04584b6 commit 891d85cCopy full SHA for 891d85c
nibabel/affines.py
@@ -321,5 +321,5 @@ def obliquity(affine):
321
322
"""
323
vs = voxel_sizes(affine)
324
- best_cosines = np.abs((affine[:-1, :-1] / vs).max(axis=1))
+ best_cosines = np.abs(affine[:-1, :-1] / vs).max(axis=1)
325
return np.arccos(best_cosines)
0 commit comments