Medical Imaging Interaction Toolkit
2025.08.99-f7084adb
Medical Imaging Interaction Toolkit
|
MitkMatchImage is a lightweight, command-line image registration tool built using the MITK (Medical Imaging Interaction Toolkit) and MatchPoint libraries. This tool enables users to register a moving image to a target image using a specified registration algorithm and supports advanced configurations like masking and parameter tuning. It is often used together with the application MitkMapImage which allows applying a registration to an image and map it accordingly into the target space.
Features
Argument | Short | Description |
---|---|---|
--moving | -m | Path to the moving image file. |
--target | -t | Path to the target image file. |
--algorithm | -a | Path to the deployed registration algorithm DLL. |
--output | -o | Output file for the computed registration result. |
Argument | Short | Description |
---|---|---|
--moving_mask | -mm | Mask for the moving image. |
--moving_mask_label | -mml | Label name to extract from the moving mask if it is a MITK Segmentation with multiple labels. |
--target_mask | -tm | Mask for the target image. |
--target_mask_label | -tml | Label name to extract from the target mask if it is a MITK Segmentation with multiple labels. |
--parameters | -p | JSON string of algorithm parameters. |
--help | -h | Show help text. |
What happens:
Registred the moving image lungCT_moving.nii.gz
onto the target image lungCT_target.nii.gz
by using the registration algorithm provided by rigidReg.dll
. The algorithm will use a moving segmentation movingSeg.nrrd
and a target segmentation targetSeg.nrrd
to guide the registration. Both segmentations are supposed to be multi-label, so the label lung
is selected for both. The resulting registration is stored in outputReg.mapr
. The registration algorithm is also configured by passing some explicit parameter settings.