approaches to registering images
image registration is the process of aligning two or more images of the same scene. this process involves designating one image as the reference image, also called the fixed image, and applying geometric transformations or local displacements to the other images so that they align with the reference. images can be misaligned for a variety of reasons. commonly, images are captured under variable conditions that can change the camera perspective or the content of the scene. misalignment can also result from lens and sensor distortions or differences between capture devices.
image registration is often used as a preliminary step in other image processing applications. for example, you can use image registration to align satellite images or medical images captured with different diagnostic modalities, such as mri and spect. image registration enables you to compare common features in different images. for example, you might discover how a river has migrated, how an area became flooded, or whether a tumor is visible in an mri or spect image.
image processing toolbox™ offers three image registration approaches: the interactive registration estimator app, intensity-based automatic image registration, and control point registration. computer vision toolbox™ offers automated feature detection and matching.
capability | the registration estimator app | intensity-based automatic image registration | control point registration | automated feature detection and matching (requires computer vision toolbox) |
---|---|---|---|---|
interactive registration | x | |||
automated intensity-based registration | x | x | ||
automated feature detection | x | x | ||
manual feature selection | x | |||
automated feature matching | x | x | x | |
nonrigid transformation | x | x | x | |
fully automatic workflow | x | x | ||
supports 3-d images | x |
the registration estimator app
the app enables you to register 2-d images interactively. you can compare different registration techniques, tune settings, and visualize the registered image. the app provides a quantitative measure of quality, and it returns the registered image and the transformation matrix. the app also generates code with your selected registration technique and settings, so you can apply an identical transformation to multiple images.
registration estimator offers six feature-based techniques, three intensity-based techniques, and one nonrigid registration technique. for a more detailed comparison of the available techniques, see .
intensity-based automatic image registration
maps pixels in each image based on relative intensity patterns. you can register both monomodal and multimodal image pairs, and you can register 2-d and 3-d images. this approach is useful for:
registering a large collection of images
automated registration
to register images using an intensity-based technique, use and specify the type of geometric transformation to apply to the
moving image. imregister
iteratively adjusts the transformation to
optimize the similarity of the two images.
alternatively, you can estimate a localized displacement field and apply a nonrigid transformation to the moving image using .
control point registration
enables you to select common features in each image manually. control point registration is useful when:
you want to prioritize the alignment of specific features, rather than the entire set of features detected using automated feature detection. for example, when registering two medical images, you can focus the alignment on desired anatomical features and disregard matched features that correspond to less informative anatomical structures.
images have repeated patterns that provide an unclear mapping using automated feature matching. for example, photographs of buildings with many windows, or aerial photographs of gridded city streets, have many similar features that are challenging to map automatically. in this case, manual selection of control point pairs can provide a clearer mapping of features, and thus a better transformation to align the feature points.
control point registration can apply many types of transformations to the moving image. global transformations, which act on the entire image uniformly, include affine, projective, and polynomial geometric transformations. nonrigid transformations, which act on local regions, include piecewise linear and local weighted mean transformations.
use the control point selection tool to select control points. start the tool with .
automated feature detection and matching
automated feature detection and extraction (computer vision toolbox) detects features such as corners and blobs, matches corresponding features in the moving and fixed images, and estimates a geometric transform to align the matched features.
for an example, see (computer vision toolbox). you must have computer vision toolbox to use this method.
note
the registration estimator app offers six feature-based techniques to register a single pair of images. however, the app does not provide an automated workflow to register multiple images.
see also
|