quaternToMatrix | R Documentation |
Given a quaternion (b, c, d)
, a scalar offset (origin), voxel step sizes,
and the qfac
sign, reconstructs a 4x4 affine matrix representing rotation,
scaling, and translation as used in NIfTI-1.
quaternToMatrix(quat, origin, stepSize, qfac)
quat |
A numeric vector of length 3 containing the quaternion parameters
|
origin |
A numeric vector of length 3 specifying the translation components (often the real-space origin or offset). |
stepSize |
A numeric vector of length 3 giving the voxel dimensions along
each axis (e.g., |
qfac |
Either |
This function uses the quaternion formalism common in neuroimaging, adding the
offset (translation) into the 4th column, and applying the voxel sizes along
each axis. If qfac
is -1
, the z
scale is negated. The
resulting 4x4 matrix is typically used as an affine transform for voxel-to-world
coordinate mapping.
A 4x4 numeric affine transformation matrix. The top-left 3x3 submatrix encodes rotation and scaling, and the 4th column encodes translation.
matrixToQuatern
for converting a matrix back to quaternion form.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.