neuroimage, 2012 - lebic-amc

18
Registration, normalisation, segmentation, VBM Matthan Caan, BIC/CSCA summer school 2012 August 30, 2012 slides copied/adjusted from: FIL SPM Course Spatial Preprocessing By John Ashburner & Ged Ridgway 1. sMRI 2. DTI 3. fMRI 4 August 30, 2012 Neuroimage, 2012

Upload: others

Post on 06-May-2022

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Neuroimage, 2012 - leBIC-AMC

Registration, normalisation, segmentation, VBMMatthan Caan, BIC/CSCA summer school 2012

August 30, 2012

slides copied/adjusted from:

FIL SPM CourseSpatial Preprocessing

By John Ashburner& Ged Ridgway

1. sMRI2. DTI3. fMRI

4

August 30, 2012

Neuroimage, 2012

Page 2: Neuroimage, 2012 - leBIC-AMC

Preprocessing overview

REALIGN COREG SEGMENT NORM WRITE SMOOTH

ANALYSIS

Preprocessing overviewfMRI time-series

Motion corrected Mean functional

REALIGN COREG

Anatomical MRI

SEGMENT NORM WRITE SMOOTH

TPMs

100034333231

24232221

14131211

mmmmmmmmmmmm

ANALYSIS

InputOutput

Segmentation

Transformation(seg_sn.mat)

Kernel

(Headers changed) MNI Space

Contents

1. Registration basics2. Motion and realignment3. Inter-modal coregistration4. Spatial normalisation5. Unified segmentation

Special cases of affine registration

* Manual reorientation* Rigid intra-modal realignment

* Motion correction of fMRI time-series* Within-subject longitudinal registration of serial sMRI

* Rigid inter-modal coregistration* Aligning structural and (mean) functional images* Multimodal structural registration, e.g. T1-T2

* Affine inter-subject registration* First stage of non-linear spatial normalisation* Approximate alignment of tissue probability maps

Page 3: Neuroimage, 2012 - leBIC-AMC

Affine transformations

* Rigid rotations have six degrees of freedom (DF)* Three translations and a 3D rotation (e.g. 3 axis rots.)

* Voxel-world mappings (spacing) usually include three scaling DF (for a possible total of 9 DF)

* General 3D affine transformationsadd three shears (12 DF total)

* Affine transform properties* Parallel lines remain parallel

Degrees of freedom (DOF)

FSL

10

August 30, 2012

Degrees of freedom (DOF)

SPM

11

August 30, 2012

rigid (6)

affine (12): Normalise: affine + non-linearSelect 0 non-linear iterations

Other types of registration in SPM

* Non-linear spatial normalisation* Registering different subjects to a standard template

* Unified segmentation and normalisation* Warping standard-space tissue probability maps to a particular

subject (can normalise using the inverse)* High-dimensional warping

* Modelling small longitudinal deformations (e.g. AD)* DARTEL

* Smooth large-deformation warps using flows* Normalisation to group’s average shape template

Page 4: Neuroimage, 2012 - leBIC-AMC

Voxel-to-world mapping

* Affine transform associated with each image* Maps from voxels (x=1..nx, y=1..ny, z=1..nz) to some world co-

ordinate system. e.g. scanner co-ordinates * Registering image B (source) to image A (target) will

update B’s voxel-to-world mapping (!!!)* If B is aligned with C, the mapping should applied to both!

In MATLAB:n=nifti(’T1.nii’) % read nifti-header

n.mat % display transformation

In FSL: fslhd or fslinfo

Transformation matrix

T

0 0 0 1

Contains translation, rotation, scaling, stretching, shearing.

Image “headers” contain information that lets us map from voxel indices to “world” coordinates in mm

Modifying this mapping lets us reorient (and realign or coregister) the image(s)

Manual reorientation

Manual reorientation

Page 5: Neuroimage, 2012 - leBIC-AMC

Transformation/reorientation matrixSPM display

17

August 30, 2012

SPM coreg result

FSL flirt transformation matrix(Bi)linear

Interpolation(voxel size 1x1x3 mm)

(Bi)linearNearest Neighbour Sinc

(Bi)linear

Interpolation / Reslicing

* Applying the transformation parameters, and resamplingthe data onto the same grid of voxels as the target image* AKA writing (as in normalise - write)

* Nearest neighbour gives the new voxel the value of the closest corresponding voxel in the source

* Linear interpolation uses information from all immediate neighbours (2 in 1D, 4 in 2D, 8 in 3D)

* NN and linear interp. correspond to zeroth and first order B-spline interpolation, higher orders use more information in the hope of improving results* (Sinc interpolation is an alternative to B-spline)

Reslicing

Reoriented

(1x1x3 mmvoxel size)

Resliced

(to 2 mmcubic)

Page 6: Neuroimage, 2012 - leBIC-AMC

Reslicing

After coregistration (6 DOF), the transformation is updated in the header of the nifti-file and reslicing is not strictly needed.

Reslicing affects the quality of your dataset, because of interpolation. Reslice as little as possible.

Pay attention when spacing of source and target is different: source 3x3x7mm, target 1x1x1mm: source insufficiently large source 1x1x1mm, target 3x3x7mm: many details are lost source 3x3x7mm, target 3x3x7mm: many details are lost,

because of thick slices. First reslice to 3x3x3mm (isotropic)

Note: when reslicing label maps, use nearest neighbourinterpolation. Otherwise your labels change.

21

August 30, 2012

Quantifying image alignment

* Registration intuitively relies on the concept of aligning images to increase their similarity* This needs to be mathematically formalised* We need practical way(s) of measuring similarity

* Using interpolation we can find the intensity at equivalent voxels* (equivalent according to the current transformation parameter

estimates)

Voxel similarity measures

• Mean-squared difference• Correlation coefficient• Joint histogram measures

),1,(

),,1(),,(

kjiI

kjiIkjiI

ref

ref

ref

),1,(

),,1(),,(

kjiI

kjiIkjiI

src

src

src

Pairs of voxel intensities

Intra-modal similarity measures

* Mean squared error (minimise)* AKA sum-squared error, RMS error, etc. * Assumes simple relationship between intensities* Optimal (only) if differences are i.i.d. Gaussian* Okay for fMRI realignment or sMRI-sMRI coreg

* Correlation-coefficient (maximise)* AKA Normalised Cross-Correlation, Zero-NCC* Slightly more general, e.g. T1-T1 inter-scanner* Invariant under affine transformation of intensities

Page 7: Neuroimage, 2012 - leBIC-AMC

Automatic image registration

* Quantifying the quality of the alignment with a measure of image similarity allows computational estimation of transformation parameters

* This is the basis of both realignment and coregistration in SPM* Allowing more complex geometric transformations or warps

leads to more flexible spatial normalisation* Automating registration requires optimisation...

Optimisation

* Find the “best” parameters according to an “objective function” (minimised or maximised)

* Optimise: translation, rotation, scaling, shearing* Challenges: local minima, noise

Value of parameter

Objective function

Global optimum(most probable)

Local optimumLocal optimum

verplaatsing

overlap

‐ 0   +

optimalisatie

verplaatsing

overlap

‐ 0   +

Page 8: Neuroimage, 2012 - leBIC-AMC

verplaatsing

overlap

‐ 0   +

rotatie‐ 0   +

overlap

verplaatsing

overlap

‐ 0   +

rotatie‐ 0   +

overlap

1

2

stap voor stap

schaling1

overlap

‐ 0   +

3

schaling1

overlap

‐ 0   +

3

schaling2‐ 0   +

overlap

4

Page 9: Neuroimage, 2012 - leBIC-AMC

schaling1

overlap

‐ 0   +

3

schaling2‐ 0   +

overlap

4

verplaatsing‐ 0   +

?

lokale minima

verplaatsing‐ 0   +

ruis

?

vervorming

Page 10: Neuroimage, 2012 - leBIC-AMC

Match images from same subject but different modalities:

– anatomical localisation of single subject activations

– achieve more precise spatial normalisation of functional image using anatomical image.

Inter-modal coregistration Inter-modal similarity measures

* Commonly derived from joint and marginal entropies* Entropies via probabilities, from histograms* H(a) = -a P(a) log2P(a)* H(a,b) = -a P(a,b) log2P(a,b)

* Minimise joint entropy H(a,b)* Maximise mutual Information

* MI = H(a) + H(b) - H(a,b)* Maximise normalised MI

* NMI = (H(a) + H(b)) / H(a,b)

Normalised Mutual Information

Measure for ‘compactness’ of joint histogram.Use for inter-modal registration.Also robust to missing data in one scan.

Joint histogram

T1

T2

T2

T1

Page 11: Neuroimage, 2012 - leBIC-AMC

FSL flirt: no histogram image, but you can change nr. of bins

43

August 30, 2012

Contents

1. Registration basics2. Motion and realignment3. Inter-modal coregistration4. Spatial normalisation5. Unified segmentation

Page 12: Neuroimage, 2012 - leBIC-AMC

Spatial Normalisation Spatial Normalisation - Reasons

* Inter-subject averaging* Increase sensitivity with more subjects

* Fixed-effects analysis

* Extrapolate findings to the population as a whole* Mixed-effects analysis

* Make results from different studies comparable by aligning them to standard space* e.g. using the MNI template

Spatial Normalisation – Procedure

* Start with a 12 DF affineregistration* 3 translations, 3 rotations

3 zooms, 3 shears* Fits overall shape and size

* Refine the registration withnon-linear deformations

Spatial Normalisation – Warping

Deformations are modelled with a linear combination of non-linear basis functions

Page 13: Neuroimage, 2012 - leBIC-AMC

Standard spaces

The MNI template follows the convention of T&T, but doesn’t match the particular brain

Recommended reading: http://imaging.mrc-cbu.cam.ac.uk/imaging/MniTalairach

The Talairach Atlas The MNI/ICBM AVG152 Template

EPI

T2 T1 Transm

PD PET

Spatial Normalisation – Templates

spm8/templates

Masking in registration

Spatial normalisation can be weighted so that non-brain voxels do not influence the result.

FSL: use BET

SPM: coregistration is robust on non-brain areasnormalisation: use the brain mask in MNI-space

need a subject’s brain mask? segment, sum GM/WM/CSF-masks

51

August 30, 2012

spm8/apriori/brainmask.nii

Spatial Normalisation – Results

Non-linear registrationAffine registration

Page 14: Neuroimage, 2012 - leBIC-AMC

Practical suggestions

Use dcm2nii (mricron) to convert PARREC / DICOM to nifti. It preserves your scan orientation.

Make a copy of your data before you start. SPM overwrites transformation in nifti-header.

High intensity peaks and negative values distort histogram. Fix before registration.

If your scan’s orientation information is lost, initialize to MNI-space using initNiftiToMNI.m

53

August 30, 2012

Viewing registration results / alignment

SPM check reg:checking aligned datasets of different size

FSLview (also for windows):view 4D-datasets as a moviemanually adjust thresholds, colormap, transparancy

Use both!

54

August 30, 2012

Contents

1. Registration basics2. Motion and realignment3. Inter-modal coregistration4. Spatial normalisation5. Unified segmentation

Unified segmentation and normalisation

* MRI imperfections make normalisation harder* Noise, artefacts, partial volume effect* Intensity inhomogeneity or “bias” field* Differences between sequences

* Normalising segmented tissue maps should be more robust and precise than using the original images ...

* … Tissue segmentation benefits from spatially-aligned prior tissue probability maps (from other segmentations)

* This circularity motivates simultaneous segmentation and normalisation in a unified model

Page 15: Neuroimage, 2012 - leBIC-AMC

Modelling inhomogeneity* Intensity in T1-scan is globally inhomogeneous* A multiplicative bias field is modelled as a linear

combination of basis functions.

Corrupted image Corrected imageBias Field

Tissue Probability Maps

* Tissue probability maps (TPMs) are used as the prior, instead of the proportion of voxels in each class

ICBM Tissue Probabilistic Atlases. These tissue probability maps are kindly provided by the International Consortium for Brain Mapping, John C. Mazziotta and Arthur W. Toga.

Deforming the Tissue Probability Maps

* Tissue probability images are warped to match the subject

* The inverse transform warps to the TPMs

Page 16: Neuroimage, 2012 - leBIC-AMC

Tissue probability maps of GM

and WM

Cocosco, Kollokian, Kwan & Evans. “BrainWeb: Online Interface to a 3D MRI Simulated Brain Database”. NeuroImage 5(4):S425 (1997)

Example output

No cleanup Light cleanup

SPM segmentation: light cleanup might be needed (specify in setup)

Page 17: Neuroimage, 2012 - leBIC-AMC

References* Friston et al. Spatial registration and normalisation of images.

Human Brain Mapping 3:165-189 (1995).* Collignon et al. Automated multi-modality image registration based on

information theory. IPMI’95 pp 263-274 (1995).* Ashburner et al. Incorporating prior knowledge into image registration.

NeuroImage 6:344-352 (1997).* Ashburner & Friston. Nonlinear spatial normalisation using basis functions.

Human Brain Mapping 7:254-266 (1999).* Thévenaz et al. Interpolation revisited.

IEEE Trans. Med. Imaging 19:739-758 (2000).* Andersson et al. Modeling geometric deformations in EPI time series.

Neuroimage 13:903-919 (2001).* Ashburner & Friston. Unified Segmentation.

NeuroImage 26:839-851 (2005).* Ashburner. A Fast Diffeomorphic Image Registration Algorithm. NeuroImage

38:95-113 (2007).

Preprocessing overviewfMRI time-series

Motion corrected Mean functional

REALIGN COREG

Anatomical MRI

SEGMENT NORM WRITE SMOOTH

TPMs

100034333231

24232221

14131211

mmmmmmmmmmmm

ANALYSIS

InputOutput

Segmentation

Transformation(seg_sn.mat)

Kernel

(Headers changed) MNI Space

Preprocessing (fMRI only)fMRI time-series

Motion corrected

Mean functional

REALIGN SEGMENT NORM WRITE SMOOTH

ANALYSIS

InputOutput

Segmentation

Transformation(seg_sn.mat)

Kernel

MNI Space

TPMs

Preprocessing overviewfMRI time-series

Motion corrected Mean functional

REALIGN COREG

Anatomical MRI

SEGMENT NORM WRITE SMOOTH

TPMs

100034333231

24232221

14131211

mmmmmmmmmmmm

ANALYSIS

InputOutput

Segmentation

Transformation(seg_sn.mat)

Kernel

(Headers changed) MNI Space

Page 18: Neuroimage, 2012 - leBIC-AMC

Preprocessing with DartelfMRI time-series

Motion corrected Mean functional

REALIGN COREG

Anatomical MRI

SEGMENT DARTELNORM 2 MNI & SMOOTH

TPMs

100034333231

24232221

14131211

mmmmmmmmmmmm

(Headers changed) ANALYSIS

DARTELCREATE

TEMPLATE

...

[email protected]