diff --git a/doc/fsl.utils.weakfuncref.rst b/doc/fsl.utils.weakfuncref.rst new file mode 100644 index 0000000000000000000000000000000000000000..1f2423e048bd9a48ad6ab338664d65daeba6a0cc --- /dev/null +++ b/doc/fsl.utils.weakfuncref.rst @@ -0,0 +1,9 @@ +:orphan: + +fsl.utils.weakfuncref module +============================ + +.. automodule:: fsl.utils.weakfuncref + :members: + :undoc-members: + :show-inheritance: diff --git a/fsl/data/mesh.py b/fsl/data/mesh.py index 20c728c4987db9a3bbe369146ea2fb864d95634d..edd16c3d74a6685bba7ea91a1b01e976d0d39c60 100644 --- a/fsl/data/mesh.py +++ b/fsl/data/mesh.py @@ -48,7 +48,7 @@ class TriangleMesh(object): ``dataSource`` Full path to the mesh file (or ``None`` if there is no file associated with this mesh). - ``vertices`` A :math:`N\times 3` ``numpy `` array containing + ``vertices`` A :math:`N\times 3` ``numpy`` array containing the vertices. ``indices`` A :meth:`M\times 3` ``numpy`` array containing diff --git a/fsl/utils/transform.py b/fsl/utils/transform.py index 36af95c958d0742e86885ce38da1109ffb8a3b00..459fae425328d5b80a0b1622a3364fe8a4bf0bf4 100644 --- a/fsl/utils/transform.py +++ b/fsl/utils/transform.py @@ -14,7 +14,7 @@ spaces. The following functions are provided: scaleOffsetXform invert concat - compse + compose decompose rotMatToAxisAngles axisAnglesToRotMat @@ -417,18 +417,18 @@ def flirtMatrixToSform(flirtMat, srcImage, refImage): def sformToFlirtMatrix(srcImage, refImage, srcXform=None): - """Under the assumption that the given ``srcImage`` and ``refImage`` - share a common world coordinate system (defined by their - :attr:`voxToWorldMat` attributes), this function will calculate and + """Under the assumption that the given ``srcImage`` and ``refImage`` share a + common world coordinate system (defined by their + :attr:`.Nifti.voxToWorldMat` attributes), this function will calculate and return a transformation matrix from the ``srcImage`` scaled voxel - coordinate system to the ``refImage`` scaled voxel coordinate system, - that can be saved to disk and used with FLIRT, to resample the source - image to the reference image. + coordinate system to the ``refImage`` scaled voxel coordinate system, that + can be saved to disk and used with FLIRT, to resample the source image to + the reference image. :arg srcImage: Source :class:`.Image` :arg refImage: Reference :class:`.Image` :arg srcXform: Optionally used in place of the ``scrImage`` - :attr:`.voxToWorldMat` + :attr:`.Nifti.voxToWorldMat` """ srcScaledVoxelsToVoxelsMat = invert(srcImage.voxelsToScaledVoxels())