Neuroimaging Data Processing/Processing/Steps/Smoothing

Neuroimaging Data Processing/Processing/Steps
Temporal Filtering Smoothing Surface Extraction

Spatial Smoothing edit

Basically a signal stream could be decomposed into time domain, space domain or frequency domain separately, and the story about "smoothing" happens on the frequency domain of the signal. Imagine that a batch of signal could be represented as a vector of frequencies versus its power in each point. The curve may follow a jumpy peroid before reaching its maximum, and then the peak is followed by a long undershoot. Smoothing is just to filter out high frequency regions, with the aim to increase the signal-to noise ratio in images. Normally so called low-pass filters will remove high frequency signals while retaining low parts, whereas high-pass filters do the other way around. So in the smoothing what is needed is a low-pass filter. The most popular ways to smoothing is by deconvoluting three-dimensional images with a three-dimensional Gaussian filter. The degree of smoothing is proportional to the full width at half-maximun (FWHM) of the Gaussian distribution, which is associated to the standard deviation (σ) by the equation FWHM = 2σ2ln(2). The larger the standard deviation (σ), the more gentle of the curve, and the larger smoothing is achieved.

What is a good smoothing ? edit

Intuitively, the larger the smoothing, the more blurring of an image is, and more information lost concomitantly. Then what is a suitable smoothing to get a balance between retaining high resolution and removing artifacts. Depending on the purpose to smoothing, there may have different answers. First of all, if the aim is to reduce noise in the image, the sensible choice of smoothing is no larger than the activation signals with intention to be found. This is straightforward to understand because no tadpole would be caught by using a net with dolphin-scale holes. Then the purpose of smoothing may lie in reducing the effects of anatomical variability, which is failed to correct during spatial normalization. In this circumstance, the optimal smoothing will rely on the variability degree in the series of images you are comparing. The last but not the least aim for smoothing could be as a prerequisite for the statistical analysis (such as the Gaussian random fields needs certain degree of spatial smoothness), then it's appropriate to select an FWHM of twice the voxel dimensions.[1]


Resting State fMRI edit

In graph-based analysis, the application of spatial smoothing is controversial. It has been argued that the increased spatial dependency introduced by smoothing might confound local connectivity strength especially for the small ROIs used ind voxel-based parecellation [2]

Implementation edit

SPM edit

SPM(Statistical parametric mapping)

FSL edit

via GUI:

 
Click on FEAT FMRI analysis, select Pre-stats and set your smoothing kernel

Start the FSL GUI, click on FEAT FMRI analysis and select Pre-stats. In the field Spatial smoothing FWHM (mm) you can set your smoothing kernel. Per default it is set to 5 mm. If you don´t want to smooth at all, set the value to 0. Bear in mind that the extent of smoothing (that makes sense) is dependent on the size of the underlying activation area. So if you are looking for a large area of activation, you can increase the kernel (e.g. to values of 10–15 mm); if you are looking for a small activation area, you should reduce the kernel from the default 5 mm.

AFNI edit

3dmerge function contains an option for spatial smoothing which is -1blur. There are different parameters you can adjust (e.g. to use rsm or sigma thresholds), check out the manual page [3] . For a Gaussian smoothing kernel of 4mm FWHM (which is the default) applied to the whole dataset the command would be:

3dmerge -1blur_fwhm 4.0 -doall -prefix OUTPUTFILE INPUTFILE

In afni_proc.py blur is a default block with the following settings, which however can be changed:

-blur_filter -1blur_fwhm
-blur_size 4
-blur_in_mask no

Reference edit

  1. Poldrack, Russell A. Mumford, Jeanette A. Nichols, Thomas E. Handbook of functional MRI data analysis. 2011
  2. Satoru Hayasaka, Paul J. Laurienti, Comparison of characteristics between region-and voxel-based network analyses in resting-state fMRI data, NeuroImage, Volume 50, Issue 2, 1 April 2010, Pages 499-508, ISSN 1053-8119, http://dx.doi.org/10.1016/j.neuroimage.2009.12.051.
  3. http://afni.nimh.nih.gov/pub/dist/doc/program_help/3dmerge.html