BrainSync

BrainSync is an orthogonal transformation for synchronization of fMRI Data Across Subjects

Brief Description

BrainSync is an orthogonal transformation that allows direct comparison of resting fMRI (rfMRI) time series across subjects. For this purpose, we exploit the geometry of the rfMRI signal space to conjecture the existence of anorthogonal transformation that synchronizes fMRI time series across ses-sions and subjects. The method is based on the observation that rfMRIdata exhibit similar connectivity patterns across subjects, as reflected inthe pairwise correlations between different brain regions. The orthogonal transformation that performs the synchronization is unique, invertible, efficient to compute, and preserves the connectivity structure of theoriginal data for all subjects. Similarly to image registration, where wespatially align the anatomical brain images, this synchronization of brain signals across a population or within subject across sessions facilitates longitudinal and cross-sectional studies of rfMRI data.

Software

The input is assumed to be two time x vertices datasets, one is denoted as subject and second as target. It is highly recommened that the input is normalized to have unit varaince. If not, BrainSync will throw a warning and do the normalization internally. Before returning the outputs, the means for each time series will be added back and varaince rescaled back to its original value. However, we recommend doing the normalization using the function normalize_data.m.

Matlab

The matlab source code for BrainSync can be downloaded below.

Download

As an input we assume data matrices (Time x Vertices) of two scans, referred to as subject and target. First the data should be normalized to 0 mean and unit variance by running:

sub = normalizeData(sub) % Do the data normalization for subject brain
ref = normalizeData(ref) % Do the data normalization for the reference brain
subSynced = brainSync(ref, sub) % subSynced is the synched data for the subject

Python

The matlab source code for BrainSync can be downloaded here.

Download [TBD]

Publications

  1. AA Joshi, M Chong, RM Leahy, BrainSync: An Orthogonal Transformation for Synchronization of fMRI Data Across Subjects, Proc. MICCAI 2017, in press. PDF

  2. AA Joshi, M Chong, RM Leahy, BrainSync: An Orthogonal Transformation for Synchronization of fMRI Data Across Subjects, OHBM 2017, Abstract, eposter

Resources/BrainSync (last edited 2017-07-11 21:51:00 by ?AnandJoshi)