Home

Documentation

GitHub

Realign brick

Realigns a time-series of images acquired from the same subject

Inputs parameters:

  • in_files <=> data 1

    The images to realign (a list of items which are an existing, uncompressed file (valid extensions: [.img, .nii, .hdr]). Currently, this brick is only coded for 4D images (no 3D list). If you need an improvement on this, please contact the development team.

    ex. ['/home/username/data/raw_data/Func.nii']
    
  • jobtype

    One of ‘estwrite’, ‘estimate’ or ‘write’:

    - estimate: generates realignment_parameters and modified_in_files
    - write: with write_which == [2, 0] or [1, 0] generates realigned_files
                with write_which == [2, 1] generates mean_image and realigned_files
                with write_which == [0, 1] generates mean_image
    - estwrite:  with write_which == [2, 0] or [1, 0] generates realignment_parameters, modified_in_files and realigned_files
                      with write_which == [2, 1] generates realignment_parameters, modified_in_file, mean_image and realigned_files
                      with write_which == [0, 1] generates realignment_parameters, modified_in_file and mean_image
    ex. estwrite
    
  • quality <=> eoptions.quality 1

    Quality versus speed trade-off (0.0 <= a floating point number <= 1.0). Highest quality (1) gives most precise results, whereas lower qualities gives faster realignment.

    ex. 0.9
    
  • separation <=> eoptions.sep 1

    Sampling separation in mm in the reference image (a floating point number >= 0.0). Smaller sampling distances gives more accurate results, but will be slower.

    ex. 4.0
    
  • fwhm <=> eoptions.fwhm 1

    The gaussian smoothing kernel width (mm, a floating point number >= 0.0) applied to the images before estimating the realignment parameters.

    ex. 5.0
    
  • register_to_mean <=> eoptions.rtm 1

    Indicate whether realignment is done to the mean image (True) or to the first image (False).

    ex. True
    
  • interp <=> eoptions.interp 1

    Degree of b-spline (1 <= a long integer <= 7) used for interpolation. Higher degree interpolation methods provide the better interpolation, but they are slower because they use more neighbouring voxels.

    ex. 2
    
  • wrap <=> eoptions.wrap 1

    Check if interpolation should wrap in [x,y,z] (a list of 3 items which are integer int or long). For example, in MRI scans, the images wrap around in the phase encode direction, so the subject’s nose may poke into the back of the subject’s head. These are typically:

    - No wrapping [0, 0, 0]: for PET or images that have already been spatially transformed (also the recommended option if
                                                  you are not really sure).
    - Wrap in Y [0, 1, 0], for (un-resliced) MRI where phase encoding is in the Y direction (voxel space).
    ex. [0, 0, 0]
    
  • weight_img <=> eoptions.weight 1

    Filename of optional weighting image, to weight each voxel of the reference image differently when estimating the realignment parameters. This would be used, for example, when there is a lot of extra-brain motion or when there are serious artifacts in a particular region of the images.

    ex. ''
    
  • write_which <=> roptions.which 1

    This parameter is not taken into account if jobtype is set to estimate. Determines which images to reslice (a list of items which are a value of class ‘int’):

    - [2,0]: Reslices all the images (1..n), including the first image selected, which will remain in its original position.
    - [1,0]: Reslices images (2..n) only. Useful for if you wish to reslice (for example) a PET image to fit a structural MRI, without
                  creating a second identical MRI volume.
    - [2,1]: All Images + Mean Image. In addition to reslicing the images, it also creates a mean of the resliced image.
    - [0,1]: Mean Image Only. Creates the mean resliced image only.
    ex. [2, 1]
    
  • write_interp <=> roptions.interp 1

    The method by which the images are sampled when being written in a different space. Nearest neighbour is fastest, but not recommended for image realignment. Trilinear Interpolation is probably OK for PET, but not so suitable for fMRI because higher degree interpolation generally gives better results. Although higher degree methods provide better interpolation, but they are slower because they use more neighbouring voxels. (0 <= a long integer <= 7). Voxel sizes must all be identical and isotropic.

    - 0: Nearest neighbour
    - 1: Trilinear
    - 2: 2nd Degree B-Spline
    - 3: 3rd Degree B-Spline
    ...
    - 7: 7th Degree B-Spline
    ex. 4
    
  • write_wrap <=> roptions.wrap 1

    A list of from 3 items which are an integer (int or long). See the wrap parameter that is used if the jobtype parameter is equal to estimate.

    - [0, 0, 0]: No wrap
    - [1, 0, 0]: wrap X
    - [0, 1, 0]: wrap Y
    - [0, 0, 1]: Wrap Z
    - [1, 1, 1]: Wrap X, Y & Z
    ...
    ex. [0, 0, 0]
    
  • write_mask <=> roptions.mask 1

    Mask output image (a boolean). Because of subject motion, different images are likely to have different patterns of zeros from where it was not possible to sample data. With masking enabled, the program searches through the whole time series looking for voxels which need to be sampled from outside the original images. Where this occurs, that voxel is set to zero for the whole set of images.

    ex. True
    
  • out_prefix <=> roptions.prefix 1

    Realigned output prefix (a string).

    ex. r
    

Outputs parameters:

  • realigned_files

    If the write_which parameter is equal to [2, 0], [1, 0] or [2, 1] and jobtype parameter is equal to write or estwrite, these will be the resliced files (a list of items which are a list of items which are a pathlike object or string representing an existing file or a pathlike object or string representing an existing file).

    ex. /home/username/data/derived_data/rFunc.nii
    
  • modified_in_files

    If the jobtype parameter is equal to estimate or estwrite, these will be copies of the in_files with a rewritten header (a list of items which are a list of items which are a pathlike object or string representing an existing file or a pathlike object or string representing an existing file).

    ex. /home/username/data/derived_data/Func.nii
    
  • mean_image

    If the write_which parameter is equal to [2, 1] or [0, 1] and jobtype parameter is equal to write or estwrite, this will be the Mean image file from the realignment (a pathlike object or string representing an existing file).

    ex. /home/username/data/derived_data/meanFunc.nii
    
  • realignment_parameters

    If the jobtype parameter is equal to estimate or estwrite, this will be the Estimated translation and rotation parameters (a list of items which are a pathlike object or string representing an existing file).

    ex. /home/username/data/derived_data/rp_Func.txt
    

1(1,2,3,4,5,6,7,8,9,10,11,12,13)

Syntax: mia_processes/nipype Realign <=> SPM12 Realign.

Usefull links: SPM12 Realign, nipype Realign