2916
Comment:
|
4566
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
= BrainSync = BrainSync is an orthogonal transformation for synchronization of fMRI Data Across Subjects |
= BrainSync Transform = === AA Joshi, M Chong, J Li, SY Choi RM Leahy: Are you thinking what I'm thinking? Synchronization of resting fMRI time-series across subjects, accepted to NeuroImage, 2018. === BrainSync is an orthogonal transformation that allows 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 sessions andsubjects. The method is based on the observation that rfMRI data exhibit similar connectivity patterns across subjects, as reflected in the 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 we spatially 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. |
Line 4: | Line 5: |
== 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. |
The BrainSync concept is illustrated below: |
Line 7: | Line 7: |
[[attachment:fig1_webpage.svg.png|{{attachment:fig1_webpage.svg.png|Click to enlarge|width=600}}]] | [[attachment:fig1_webpage.svg.png|{{attachment:fig1_webpage.svg.png|Click to enlarge|width="700"}}]] |
Line 9: | Line 9: |
[[attachment:fig1_webpage.svg.png]] | Please refer to our publications below for detailed explanation and examples. The following video shows the rfMRI signal of a (left) subject brain; (middle) a reference brain and (right) synced subject. [[http://neuroimage.usc.edu/images/brainsync_movie.gif|{{http://neuroimage.usc.edu/images/brainsync_movie.gif|Click to enlarge|width="700"}}]] |
Line 12: | Line 16: |
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. | The input is assumed to be two time x vertices datasets, one is denoted as subject and second as target. In order to generate the preprocessed time series on the cortical surface, the preprocessing that we do is described in our publications below. Specifically, we recommend using [[http://neuroimage.usc.edu/neuro/tNLM|tNLM filtering]] as denoising done by tNLM helps in obtaining a much better synchronization. It is highly recommened that the input is normalized to have unit varaince. Please use the functions provided below before applying BrainSync as follows. |
Line 17: | Line 23: |
[[attachment:BrainSyncMatlab.zip|Download]] | '''[[http://neuroimage.usc.edu/neuro/Resources/BrainSync?action=AttachFile&do=get&target=BrainSync_Matlab_Ver1.02.zip|Download]]''' |
Line 19: | Line 25: |
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: | As an input we assume data matrices (Time x Vertices) of two scans, referred to as sub and ref. First the data should be normalized to 0 mean and unit variance by running: |
Line 24: | Line 30: |
subSynced = brainSync(ref, sub) % subSynced is the synched data for the subject | }}} and then the data can be synchronized using the following code. {{{ % subSynced is the synched data for the subject and % O is the associated orthogonal transform [subSynced, O] = brainSync(ref, sub) |
Line 27: | Line 39: |
The matlab source code for BrainSync can be downloaded here. | The python source code for BrainSync can be downloaded below. |
Line 29: | Line 41: |
Download [TBD] | '''[[http://neuroimage.usc.edu/neuro/Resources/BrainSync?action=AttachFile&do=get&target=BrainSync_Python_Ver1.11.zip|Download]]''' |
Line 31: | Line 43: |
As an input we assume data as numpy arrays (Time x Vertices) of two scans, referred to as sub and ref. First the data should be normalized to 0 mean and unit variance by running: {{{ from brainsync import brainSync, normalizeData sub, _, _ = normalizeData(sub) # Do the data normalization for subject brain ref, _, _ = normalizeData(ref) # Do the data normalization for the reference brain }}} and then the data can be synchronized using the following code. {{{ # subSynced is the synched data for the subject and # O is the associated orthogonal transform subSynced, O = brainSync(ref, sub) }}} |
|
Line 34: | Line 61: |
1. AA Joshi, M Chong, J Li, SY Choi RM Leahy: Are you thinking what I'm thinking? Synchronization of resting fMRI time-series across subjects, accepted to NeuroImage, 2018. |
BrainSync Transform
AA Joshi, M Chong, J Li, SY Choi RM Leahy: Are you thinking what I'm thinking? Synchronization of resting fMRI time-series across subjects, accepted to NeuroImage, 2018.
BrainSync is an orthogonal transformation that allows 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 sessions andsubjects. The method is based on the observation that rfMRI data exhibit similar connectivity patterns across subjects, as reflected in the 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 we spatially 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.
The BrainSync concept is illustrated below:
Please refer to our publications below for detailed explanation and examples.
The following video shows the rfMRI signal of a (left) subject brain; (middle) a reference brain and (right) synced subject.
Software
The input is assumed to be two time x vertices datasets, one is denoted as subject and second as target. In order to generate the preprocessed time series on the cortical surface, the preprocessing that we do is described in our publications below. Specifically, we recommend using tNLM filtering as denoising done by tNLM helps in obtaining a much better synchronization.
It is highly recommened that the input is normalized to have unit varaince. Please use the functions provided below before applying BrainSync as follows.
Matlab
The matlab source code for BrainSync can be downloaded below.
As an input we assume data matrices (Time x Vertices) of two scans, referred to as sub and ref. 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
and then the data can be synchronized using the following code.
% subSynced is the synched data for the subject and % O is the associated orthogonal transform [subSynced, O] = brainSync(ref, sub)
Python
The python source code for BrainSync can be downloaded below.
As an input we assume data as numpy arrays (Time x Vertices) of two scans, referred to as sub and ref. First the data should be normalized to 0 mean and unit variance by running:
from brainsync import brainSync, normalizeData sub, _, _ = normalizeData(sub) # Do the data normalization for subject brain ref, _, _ = normalizeData(ref) # Do the data normalization for the reference brain
and then the data can be synchronized using the following code.
# subSynced is the synched data for the subject and # O is the associated orthogonal transform subSynced, O = brainSync(ref, sub)
Publications
AA Joshi, M Chong, RM Leahy, BrainSync: An Orthogonal Transformation for Synchronization of fMRI Data Across Subjects, Proc. MICCAI 2017, in press. PDF
AA Joshi, M Chong, RM Leahy, BrainSync: An Orthogonal Transformation for Synchronization of fMRI Data Across Subjects, OHBM 2017, Abstract, eposter
AA Joshi, M Chong, J Li, SY Choi RM Leahy: Are you thinking what I'm thinking? Synchronization of resting fMRI time-series across subjects, accepted to NeuroImage, 2018.