Main Content

Medical Image Registration

Medical image registration is the process of aligning multiple medical images, volumes, or surfaces to a common coordinate system. In medical imaging, you may need to compare scans of multiple patients or scans of the same patient taken in different sessions under different conditions. Use medical image registration as a preprocessing step to align the medical images to a common coordinate system before you analyze them.

Scenarios for Medical Image Registration

Classification by Type of Misalignment

  • Translation registration - Required when the two images, volumes, or surfaces differ by a global shift common to all pixels, voxels, or points.

    Translation Registration

  • Rigid registration - Required when the two images, volumes, or surfaces differ by a global shift and a global rotation common to all pixels, voxels, or points.

    Rigid Registration

  • Similarity registration - Required when the two images, volumes, or surfaces differ by a global shift, a global rotation, and a global scale factor common to all pixels, voxels, or points.

    Similarity Registration

  • Affine registration - Required when the two images, volumes, or surfaces differ by a global shift, a global rotation, a global scale factor, and a global shear factor common to all pixels, voxels, or points.

    Affine Registration

  • Deformable registration (also known as non-rigid registration) - Required when the images, volumes, or surfaces differ by local transformations specific to certain pixels, voxels, or points.

    Deformable Registration

Classification by Type of Input

  • Image registration - Aligns 2-D grayscale images.

  • Volume registration - Aligns 3-D intensity volumes.

  • Surface registration - Aligns surfaces extracted from 3-D intensity volumes.

  • Groupwise registration - Aligns slices in a series of 2-D medical images, such as a timeseries, to reduce sliding motion between the slices.

Functions for Medical Image Registration

Medical Imaging Toolbox™ provides various functions for medical image registration.

FunctionType of MisalignmentType of InputFunction DetailsMethod
imregister

Translation

Rigid

Similarity

Affine

2-D grayscale images

3-D intensity volumes

Specify configuration using imregconfig. Transform returned by imregtform.Optimization-based technique. Regular step gradient descent optimizer with mean squares metric for monomodal configuration. One-plus-one evolutionary optimizer with Mattes mutual information metric for multimodal configuration.
imregicp

Translation

Rigid

Surfaces

Transform returned by function itself.Optimization-based technique. Uses the iterative closest point (ICP) algorithm.
imregmtb

Translation

2-D grayscale images

3-D RGB images

Transform returned by function itself.Fast registration technique. Uses median threshold bitmap (MTB) method. Suitable for monomodal and multimodal images.
imregmoment

Translation

Rigid

Similarity

2-D grayscale images

3-D intensity volumes

Transform returned by function itself.Fast registration technique. Uses moment of mass method, with the option to also use the median threshold bitmap (MTB) method. Suitable for monomodal and multimodal images and volumes.
imregdemons

Deformable

2-D grayscale images

3-D intensity volumes

Displacement field returned by function itself.Deformable registration technique. Uses a diffusion-based Demons algorithm.
imregdeform

Deformable

2-D grayscale images

3-D intensity volumes

Displacement field returned by function itself.Deformable registration technique. Uses the isotropic total variation regularization method.
imreggroupwise

Deformable

3-D image series consisting of 2-D slices

Does not require a reference image. Displacement field returned by function itself.Groupwise registration technique. Uses the isotropic total variation regularization method.
imregcorr

Translation

Rigid

Similarity

2-D grayscale images

3-D RGB images

Function returns only the transform. Use imwarp to apply the transformation and get the registered image.FFT-based technique. Uses the phase correlation method.

See Also

Functions

Related Topics