Skip to content

MATLAB toolbox for converting PETRA and ZTE images to pseudo-CT images

License

Notifications You must be signed in to change notification settings

ucl-bug/petra-to-ct

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PETRA-TO-CT

MATLAB toolbox for converting a Siemens PETRA image to a pseudo-CT.

⚠️ This repository is still under development. Breaking changes may occur!

Overview

Many therapeutic techniques, including transcranial ultrasound stimulation (TUS), require a structural computed tomography (CT) image of the head and skull for treatment planning. However, in a research setting, obtaining CT images can be problematic. This toolbox allows the conversion of a SIEMENS PETRA (pointwise encoding time reduction with radial acquisition) magnetic resonance (MR) image to a pseudo-CT image.

The conversion broadly follows the steps outlined in two papers by Florian Wiesinger et al (see here and here), but using a different conversion curve derived from paired PETRA and low-dose CT images taken on three subjects. The steps are as follows:

  1. Debiasing the image using N4ITK MRI bias correction.
  2. Applying histogram normalisation to shift the soft-tissue peak to 1.
  3. Segmenting the skull and head in the image using SPM12, followed by morphological operations in MATLAB.
  4. Applying a linear mapping to MR voxel values in the skull bone, and using fixed values elsewhere in the head.

The conversion in Step 4 relies on the pre-processing performed in Steps 1 and 2. These steps must always be applied in the same way for the conversion to work correctly. However, other approaches can be used to derive the segmentation.

An investigation into the accuracy of TUS simulations using an earlier version of this mapping is discussed here (note, the conversion in this paper was based on a different dataset of paired ZTE and CT images).

MR protocol

The conversion is derived from a pair-wise mapping between Siemens PETRA images and low-dose CT images (see Conversion). Thus, the PETRA images must always be acquired using the same sequence parameters. The scan parameters and Siemens EXAR file are stored in the scanfiles folder. Some key parameters are given below.

General setup:

  • System – Siemens Magnetom Prisma
  • Coil – Head/Neck 64 or 32 Channel Head Coil
  • Software Version – Syngo MR E11

Key sequence parameters:

  • TR 1 – 3.61 ms
  • TE – 0.07 ms
  • Flip angle – 1 degree
  • Slices per slab – 320
  • Slice thickness – 0.75 mm

Note, 3D distortion correction should be applied to the data after measurement.

Setup

To use the conversion toolbox, the following dependencies must first be installed:

After installation, the following setup steps must be performed

  • This toolbox, SPM12, and the NIFTI tools must be added to the MATLAB path.

  • 3D Slicer must be added to the system path

    • Linux:

      export PATH="/path/to/Slicer-X.Y.Z-linux-amd64:$PATH"
    • Windows:

      1. Type Environment Variables in the search bar. This should open the System Properties dialog box.

      2. Click on Environment Variables

      3. Under System variables, select Path and then Edit

      4. Select New and add the root folder and bin directory of Slicer to the path, e.g.,

        C:\Users\username\AppData\Local\NA-MIC\Slicer X.Y.Z
        C:\Users\username\AppData\Local\NA-MIC\Slicer X.Y.Z\bin
        

        (where X.Y.Z is the Slicer version number).

Usage

Convert a PETRA image to a pseudo-CT:

petraToCT.convert('myImage.nii');

Convert, keeping the SPM segmentation:

petraToCT.convert('myImage.nii', DeleteSegmentation=false);

Re-run the conversion with a different smoothing, re-using a saved SPM segmentation:

petraToCT.convert('myImage.nii', DeleteSegmentation=false, RunSegmentation=false, SkullMaskSmoothing=3)

Conversion

The conversion between PETRA and CT values in the skull bone was derived from PETRA and low-dose CT images taken of three subjects. The CT images were acquired using a GE Revolution CT. Some of the key parameters are listed below:

  • Slice thickness: 0.625 mm
  • Pixel spacing: 0.45 mm (typical value)
  • Convolution kernel: BONEPLUS
  • Tube current: 70 (typical value)
  • KVP: 80

The PETRA and CT image pairs were co-registered, and a linear mapping of $\mathrm{CT} = -2929.6 \times \mathrm{MRI} + 3274.9$ between the voxel intensities within the skull was then obtained using principal component analysis.

The figure below shows a density plot of the CT HU in the skull against the corresponding normalised PETRA values (as described in Histogram Normalisation below). The linear fit is shown with the white dashed line. For pseudo-CT generation, voxels in the background/air are set to -1000 HU and voxels in the head are set to 42 HU.

Density conversion and k-Plan calibration file

To calibrate the conversion between CT Hounsfield units and mass density for the low-dose CT protocol, a CT image of a CIRS Model 062M Electron Density Phantom was acquired using the same acquisition settings. The extracted curve is stored in docfiles/ct-calibration and shown below. To use the converted pseudo-CT images with k-Plan, the images should be loaded using this calibration file.

Limitations

  • Mapping air is not currently implemented (air properties currently set to soft tissue)
  • The linear mapping is currently derived from three subjects. We will continue to tweak the mapping curve as more data becomes available.

Trouble shooting

Histogram normalisation

The plot produced by the histogram normalisation should look like the figure below, with the right-most vertical line through the right-most peak in the histogram. If the histogram peak is not correctly identified, adjust the input values for HistogramMinPeakDistance and HistogramNPeaks until the peak is correctly identified.

Holes in the mask

If the converted pseudo-CT appears to have large regions of soft-tissue within the skull, try increasing the value of SkullMaskSmoothing, e.g., to 3 (from the default value of 1).