Independent Component Analysis of fmri Data

Size: px
Start display at page:

Download "Independent Component Analysis of fmri Data"

Transcription

1 Independent Component Analysis of fmri Data Denise Miller April 2005 Introduction Techniques employed to analyze functional magnetic resonance imaging (fmri) data typically use some form of univariate data analysis to determine regions of task-related activity. Changes in blood oxygen level dependent (BOLD) signal at each voxel can successfully be analyzed using univariate techniques. This type of analysis can identify voxels where the BOLD signal changes are significantly correlated to an expected time course for an experiment. However, univariate analysis is not able to effectively determine correlation, or lack of it, between the voxels identified as active. Two voxels may both be significantly correlated to the experiment s time course but uncorrelated with each other, implying potentially different causes of signal changes in the areas represented by these voxels. Multivariate analysis of fmri data would be ideal, but application of multivariate techniques is complicated by the fact that the number of datapoints (voxel values) greatly outnumbers the timepoints in a typical fmri dataset. Independent component analysis (ICA) is one type of multivariate data analysis which has been used to successfully analyze fmri data. The standard application of ICA is blind source separation. Observed data is assumed to be a linear combination of a number of components, where each component corresponds to a signal which may be either one of the original source signals or noise. Since source signals are often statistically independent, ICA attempts to unmix the observed data into its source signals by finding the linear transformation which provides the set of components which are as independent as possible. Signals within fmri data, for example, would include task-related activity signals, physiological signals (due to heartbeat and breathing), motion-related signals and signals due to the MRI equipment. BOLD signal changes in an fmri experiment are typically very small, and physiological signals are thought to be a major contributing factor to the measured signals. With ICA, it is hoped that signals from various sources can be successfully separated from one another. In this project, the FastICA algorithm [4] was applied to fmri data from the synaethesia dataset. Once independent components within the fmri data were identified, the set of components that correspond to task-related activation was determined by comparing the components time courses with the expected time course for the experiment. An activation map was created for each of these components. Areas of task-related activity identified by ICA were also compared to the active brain regions identified using BOLDfold, and to those identified by creating an Afni fico map. Method Independent Component Analysis Independent component analysis is based on the assumption that the observed data, X, is a linear combination of a set of independent components, C, representing the source signals. For fmri data, X is an nxv matrix where n is the number of time points, and v is the number of voxels within each image. With noise terms included, the relationship between the observed data and the source signals can be expressed as X = MC + N However, noise is often not specifically modeled in ICA algorithms. In this case, it is assumed that ICA will find noise as separate components. Omitting noise terms, X = MC 1

2 In other words, the observed fmri signals are assumed to be the linear sum of contributions of individual components at each voxel. Each row of the matrix C represents one component. The mixing matrix, M, indicates the relative contribution of each component at each time point to the observed data. The ICA algorithm iteratively determines the unmixing matrix, W, such that C = WX W is not necessarily the exact inverse of M; it may be permuted and/or linearly scaled. Data could then be reconstructed from X = W -1 C In the case where W -1 is equal to M, the data could be perfectly reconstructed. When applied to fmri data, the components identified by ICA consist of a set of voxel values and associated time courses. Either independence of the spatial patterns or of the time courses can be used to separate the signals. The choice of spatial or temporal independence when analyzing fmri data is somewhat controversial [2], although spatial independence appears to be the most common assumption in published fmri analyses using ICA. For this project, spatial independence was assumed. Each row of C provides the map voxel values of one component. The corresponding column in the W -1 matrix gives the time course for that component (i.e. column 1 of W -1 gives the time course for the component represented by row 1 of C). As the fmri data changes with time, ICA assumes that the changes are the result of changes in the relative contributions of the components to the observed data, not due to changes in the component maps themselves. Component maps do not change during the course of an experiment. Voxel values of a component map represent the contribution of the individual voxels to that component. To determine the voxels which contribute significantly to a particular component map, the map values can be scaled using z-scores (the number of standard deviations of the voxel value from the mean voxel value in the map). Voxels with absolute z-score greater than a certain threshold can be considered active voxels for that component. ICA can extract a number of independent components from the fmri data up to the number of time points in that data. The sum of all task-related components provides the full picture of task-related brain activity. The order of the components determined by ICA is not significant. A fundamental assumption of ICA is that the components do not have gaussian distributions. In fact, FastICA finds the components within the observed data by maximizing nongaussianity [5]. McKeown et al. [9] examined both the assumption of non-gaussianity of source signals of fmri data, and the assumption that the fmri components were spatially independent, and found both to be valid. The FastICA Algorithm For this project, FastICA was used to find independent components within the fmri data. FastICA code is freely available from FastICA provides two approaches to calculate the independent components within observed data. In the Deflation technique, independent components are estimated one by one using hierarchical decorrelation. In the Symmetric technique, all independent components are estimated at once using symmetric decorrelation. Deflation is the default. FastICA performs two pre-processing steps. In the first step, the data is centered by subtracting the mean. This step is performed to simplify ICA computations. The mean is then added back to the data after the signals have been estimated. In the second pre-processing step, principal component analysis (PCA) is used in order to whiten the data. The observed data is transformed so that the covariance matrix of the transformed data equals unity. Although this step is not required by all ICA algorithms, all ICA algorithms converge better with whitened data. PCA may also reduce the dimension of the data, and determine the number of independent components. 2

3 The FastICA algorithm makes some key assumptions about the data. As with all ICA algorithms, FastICA assumes that the independent components are non-gaussian. Also, FastICA assumes that the number of observed mixtures (n) is at least as large as the number of independent components. This assumption is not strictly required by ICA, but is necessary in order to identify the individual components and not just the mixing matrix, M. FastICA makes a further simplification by assuming that the dimension of the observed data equals the number of independent components. Full details of the FastICA algorithm are described by Hyvarinen et al. [5]. Code Developed for this Project For this project, ICA was used to analyze the synaethesia fmri dataset to determine regions of the brain which had task-related activity. The input data for the analysis was a series of Afni time series images. Afni Matlab functions were used to read and write fmri maps in Afni format. FastICA routines were used to perform independent component analysis. In addition, a number of custom developed routines were created. In addition to running the appropriate Afni Matlab and FastICA functions, these routines convert data into the expected formats, separate the individual components identified by FastICA, determine the correlation of the time course of each of these components to the expected time course of the experiment, and convert the component maps for correlated components into Afni maps. The custom developed code is included in the following Matlab routines. convertafni.m separatesignals.m converttoafni.m convertfunctoafni. m runica.m Reads the Afni time series data using Afni Matlab functions. Converts data into an nxv matrix for input to the FastICA routine. Compares the time course of each component found by FastICA to the expected time course for the experiment. Any time points which fall within the stabilization period at the beginning of the experiment are excluded from the comparison. For each component which has a correlation value greater than or equal to the specified cutoff value, a data file is created to store the component map for that component (the corresponding row of the C matrix). If requested, a time series image data file is also created for each significantly correlated component. The time series data is constructed by multiplying the appropriate column of the W -1 matrix with the component row from the C matrix. Converts data from the component map data file (created by separatesignals.m) into the required format. Creates a raw component map from this data, in Afni format. This map will have voxel values which indicate the relative contribution of each voxel to the component. Also creates an Afni intensity map which indicates only those voxels which contribute significantly to the component, as determined by their z-score. Z-score is computed for each voxel, and for each voxel with a z-score above the specified threshold, the voxel value in the intensity map is set to its z-score. Values for all insignificant voxels are set to zero in this map. These intensity maps can be used to identify the regions of task-related brain activity. Converts data from the time series data files created by separtesignals.m into Afni time series images. Convenience routine which runs convertafni.m, FastICA and separatesignals.m All code developed for this project is available on io.usask.ca. Full instructions for running the project code are provided in the Independent Component Analysis of fmri Data User Guide. 3

4 ICA Analysis of the Synaethesia fmri Dataset The Deflation (default) technique of FastICA was used for most of the analysis of synaethesia data. The Symmetric technique was used in only a limited number of cases for comparison purposes. A square wave was used as the comparison function for the experiment. The comparison function identified that the first 5 time points should be ignored when correlating the time course of each component with the expected time course, as these initial time points fall within the stabilization period. Results The ICA project code was applied to the data for several of the subjects from the synaethesia fmri study. In general, ICA tended to identify multiple components which had time series that were correlated to the expected time course for each of the experiments. Correlation values of component time courses to the expected time course were generally low. As a result, a value of 0.3 was specified as the cutoff point. Data for all components with a correlation value greater than or equal to 0.3 was saved. Data for the components with the highest correlation values above this threshold were then converted to Afni maps in subsequent steps. Typically experiments had between 2 and 6 components with a correlation value above this threshold. Each analysis also produced a number of components which were negatively correlated to the task. In creating the intensity maps, a z-score cutoff of 4 seemed to be appropriate in most cases. Using a z- score value below this level tended to leave a number of marked voxels which appeared to be noise, such as isolated active voxels, and, in some cases, voxels outside the head. Use of a z-score cutoff higher than 4 eliminated a number of regions which had been identified as active. When the regions identified by ICA as active during the task were compared to the active regions identified by BOLDfold or by Afni fico maps, there was typically some amount of overlap in addition to active regions identified uniquely by ICA or the other techniques. It is likely that the amount of overlap would increase if contributions of additional components were added to the comparison. However, this is also likely to increase the number of voxels identified as active by ICA alone. The figures below show the results of using the ICA project code on the test results from subject E11 in the arithn test, in which the subject was shown simple equations and asked to solve them. For this case, ICA identified only two components with a correlation value above 0.3: component 70 had the highest correlation value at , and component 18 was second at The next highest correlation value of any of the components for this case was only Figures 1 and 3 show the regions identified as active by these components individually. In Figure 4, the active regions identified by both task-related components are combined. The active areas identified by these components are overlaid with the active areas identified by BOLDfold analysis of this case. Active areas identified only by the components, those identified only by BOLDfold, and those areas identified by both ICA and BOLDfold are indicated in different colours. Figure 2 shows the time course for voxels which contribute significantly to component 70. 4

5 Figure 1: Component 70. All pixels with a z-score greater than or equal to 3.0 are shown. Correlation coefficient for component 70 is Figure 2: Sample time course for voxels which contribute significantly (high z-score) to component 70. 5

6 Figure 3: Component 18. All pixels with z-score greater than or equal to 3.0 are shown. Correlation coefficient for component 18 is

7 In the figure below, the two components which are most task-related are combined. Voxels identified as active by either component 70 or component 18 are shown in red. The results of using BOLDfold to identify task-related brain activity are also shown on these images, with these voxels marked in blue. The overlap of active areas identified by ICA and BOLDfold is shown in yellow. Figure 4: Comparison of areas of task-related activity as identified by the two more task correlated components, and by BOLDfold. Voxels shown in red indicate areas of activity identified by the components only; voxels shown in blue indicate areas of activity identified by BOLDfold only; voxels shown in yellow indicate areas of activity identified by both methods. Discussion One of the problems of ICA is that it gives a large number of components, in no particular order. Kiviniemi et al. [6] attempt to alleviate this problem by specifying that the number of principal components chosen during the PCA pre-processing step of FastICA be 40. The number 40 was selected in order to still provide 99.99% coverage of signal variance. However, it is not clear how it was determined that 40 was the required number of components to provide this coverage. It would be interesting to see the results of limiting the number of components in the analysis of the synaethesia dataset. This was not attempted. A very minor change to the runica.m routine would be required in order to supply the maximum number of components as an input parameter. However, the challenge with reducing the number of components this way is that the unmixing matrix would no longer be square, and so no longer invertible. It is the corresponding column of W -1, the inverse of the unmixing matrix, which provides the time course for each component. So, by forcing the number of components to be smaller than the number of timepoints, there is no longer a way to determine which of the components has a time course which is correlated to the expected time course of the experiment. Voxel scores within component maps may have either positive or negative values. Negative z-scores of 7

8 voxels within a component map indicate voxels where the fmri signal is modulated opposite to the time course of that component. Voxels with negative z-scores were not examined in this project, although this would be interesting for future work. In this project, a correlation cutoff of 0.3 and a z-score cutoff of 4 seemed to be most appropriate. In the ICA analysis of fmri data performed by McKeown et al. [8], a correlation cutoff of 0.4, and a z-score cutoff of 2 were used. Kiviniemi et al. [6] performed ICA analysis of fmri data also using the FastICA routine. As was done in the synaethesia data analysis of this project, Kiviniemi et al. used FastICA s deflation approach. For their work, they found that a z-score cutoff of 6 was appropriate. For the synaethesia dataset, ICA identified a number of components which had time courses that were significantly correlated to the expected time course of the experiment. The typical number of these taskrelated components was between 2 and 6 of the 143 components identified. In McKeown s study [8], for each experiment exactly one ICA component was found which had a time course which was significantly correlated (correlation coefficient of 0.64 to 0.94) with the reference function for the experiment. Arfanakis et al. [1] report results which are closer to the results of this project. In their analysis of fmri data, Arfanakis et al. found that in most cases there was more than one ICA component with a time course that corresponded to the task activation pattern. The maximum number of such task-related components was found to be 7 of 144 components. In the work of McKeown et al. [8], regions of maximum activity in task-related components overlapped active regions found by the standard correlation method. However, their ICA analysis also found additional regions of task-related activation which were not identified by the conventional method. McKeown et al. state that, in general, ICA, PCA and correlation analysis methods for finding active voxels will usually not give identical results, although there may be overlap [8]. This finding is consistent with the results of the ICA analysis of synaethesia data when compared to results from BOLDfold and Afni (correlation) analysis of the same data. For the majority of the ICA analysis of synaethesia data, FastICA s default deflation technique was used. This approach is consistent with that described by Kiviniemi et al. [6] in their ICA analysis of fmri data. However, Hyvaarinen states that the deflation technique is useful for exploratory data analysis [5]. It is not clear whether this statement is meant to imply that deflation should only be used for an initial exploratory analysis. When the symmetric approach was used to analyze synaethesia data, it was found that this technique identified a different pattern of components than deflation. That is, there was a noticeable difference in the number of components with time courses significantly correlated to the expected time course when each of these techniques was applied to the same input data. Additional FastICA analysis using the symmetric technique should be run against the synaethesia data, in order to determine the extent of the differences in components identified. For this project, it was assumed that the spatial patterns of the underlying components of observed fmri data were independent. The spatial independence assumption seems to be consistent with most published ICA analyses of fmri data, including that of McKeown et al. [8]. However, the debate between selection of spatial independence vs. temporal independence when analyzing fmri data appears to be ongoing. Calhoun et al. [2] recommend that both spatial ICA and temporal ICA be applied to fmri data, and the authors cite examples where both approaches have been used in combination for analysis of fmri data. It would be worthwhile to examine the results of an ICA analysis of the synaethesia data where temporal independence is assumed. The comparison function used for all ICA analysis in this project was a standard square wave. Although a square wave is an acceptable comparison function for block fmri experiment design, a better comparison function would be a square wave convolved with the expected hemodynamic response function. If a more accurate comparison function were used, it would be interesting to see whether additional or different components were identified as task-related, or whether the same pattern of components was identified, but just with higher correlation coefficients. Calhoun et al. [2] identify signals of interest within fmri data as including: 8

9 Task-related signals: Signals which are correlated to reference waveform for the experiment Transiently task-related signals: The responses of brain are not necessarily regular. Signals may, for example, die out before end of a stimulus, resulting in a transiently task-related pattern of activation. Function-related signals: Similarities between voxels within a functional domain of the brain (e.g. motor cortex) As the code is currently written, the separatesignals.m routine will only detect and process task-related signals. However, the information for all source signals is available in the output from the FastICA routine. It would be interesting to expand the existing code in order to separate out the other signals of interest. McKeown et al. [9] identify a pattern to regions of the brain where ICA models fit better or less well. According to their findings, white matter is better modeled than the cortex or regions around blood vessels. The authors state that this disparity may be explained by the fact that the number of spatially independent components differs between the more active gray matter and white matter. They speculate that the actual mixture of components may be nonlinear. McKeown et al. suggest that advances in the application of ICA to fmri data may result from separate analyses of different subsets of the brain. 9

10 References [ 1 ] Arfanakis, Konstantinos, Cordes, Dietmar, Haughton, Victor M., Moritz, Chad H., Quigley, Michelle A., and Meyerand, Mary E., Combining independent component analysis and correlation analysis to probe interregional connectivity in fmri task activation datasets, Magnetic Resonance Imaging, Volume 18, pp , [ 2 ] Calhoun, V.D., Adali, T., Hansen, L.K., Larsen, J., and Pekar, J.J., ICA of Functional MRI Data: An Overview, 4 th International Symposium on Independent Component Analysis and Blind Signal Separation (ICA 2003), April 2003, Available from: Accessed: [ 3 ] Calhoun, V.D., Adali, T., Pearlson, G.D., and Pekar, J.J., Spatial and Temporal Independent Component Analysis of Functional MRI Data Containing a Pair of Task-Related Waveforms, Human Brain Mapping, Volume 13, pp , [ 4 ] Hyvarinen, Aapo, Survey on Independent Component Analysis, Available from: Accessed: [ 5 ] Hyvarinen, Aapo, and Oja, Erkki, Independent Component Analysis: Algorithms and Applications, Neural Networks, Volume 13, No. 4, pp , [ 6 ] Kiviniemi, Vesa, Kantola, Juha-Heikki, Jauhiainen, Jukka, Hyvarinen, Aapo, and Tervonen, Osmo, Independent component analysis of nondeterministic fmri signal sources, NeuroImage, Volume 19, pp , [ 7 ] McKeown, Martin J., Detection of Consistently Task-Related Activations in fmri Data with Hybrid Independent Component Analysis, NeuroImage, Volume 11, pp , [ 8 ] McKeown, Martin J., Makeig, Scott, Brown, Greg G., Jung, Tzyy-Ping, Kinderman, Sandra S., Bell, Anthony J., and Sejnowski, Terrence J., Analysis of fmri Data by Blind Separation Into Independent Spatial Components, Human Brain Mapping, Volume 6, pp , [ 9 ] McKeown, Martin J., and Sejnowski, Terrence J., Independent Component Analysis of fmri Data: Examining the Assumptions, Human Brain Mapping, Volume 6, pp , [ 10 ] Sarty, Gordon E., Computing Brain Activity Maps from fmri Time-Series Images. 10

INDEPENDENT COMPONENT ANALYSIS WITH FEATURE SELECTIVE FILTERING

INDEPENDENT COMPONENT ANALYSIS WITH FEATURE SELECTIVE FILTERING INDEPENDENT COMPONENT ANALYSIS WITH FEATURE SELECTIVE FILTERING Yi-Ou Li 1, Tülay Adalı 1, and Vince D. Calhoun 2,3 1 Department of Computer Science and Electrical Engineering University of Maryland Baltimore

More information

INDEPENDENT COMPONENT ANALYSIS APPLIED TO fmri DATA: A GENERATIVE MODEL FOR VALIDATING RESULTS

INDEPENDENT COMPONENT ANALYSIS APPLIED TO fmri DATA: A GENERATIVE MODEL FOR VALIDATING RESULTS INDEPENDENT COMPONENT ANALYSIS APPLIED TO fmri DATA: A GENERATIVE MODEL FOR VALIDATING RESULTS V. Calhoun 1,2, T. Adali, 2 and G. Pearlson 1 1 Johns Hopkins University Division of Psychiatric Neuro-Imaging,

More information

FMRI data: Independent Component Analysis (GIFT) & Connectivity Analysis (FNC)

FMRI data: Independent Component Analysis (GIFT) & Connectivity Analysis (FNC) FMRI data: Independent Component Analysis (GIFT) & Connectivity Analysis (FNC) Software: Matlab Toolbox: GIFT & FNC Yingying Wang, Ph.D. in Biomedical Engineering 10 16 th, 2014 PI: Dr. Nadine Gaab Outline

More information

This Week. Last Week. Independent Component Analysis. ICA vs. PCA. ICA vs PCA. Blind Source Separation: The Cocktail Party Problem

This Week. Last Week. Independent Component Analysis. ICA vs. PCA. ICA vs PCA. Blind Source Separation: The Cocktail Party Problem 1 Last Week Functional Connectivity This Week (Brief) ICA Intro ICA of fmri Sorting/Calibration Validation Demo single-subject subject ICA 2 Blind Source Separation: The Cocktail Party Problem Observations

More information

Independent Component Analysis of Functional Magnetic Resonance Imaging (fmri) Data: A simple Approach

Independent Component Analysis of Functional Magnetic Resonance Imaging (fmri) Data: A simple Approach Research Journal of Applied Sciences, Engineering and Technology 5(24): 5494-552, 213 ISSN: 24-7459; e-issn: 24-7467 Maxwell Scientific Organization, 213 Submitted: August 17, 212 Accepted: September 8,

More information

A Modified Infomax ICA Algorithm for fmri Data Source Separation

A Modified Infomax ICA Algorithm for fmri Data Source Separation Research Journal of Applied Sciences, Engineering and echnology 5(20): 4862-4868, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: December 17, 2012 Accepted: January

More information

Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques

Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques Sea Chen Department of Biomedical Engineering Advisors: Dr. Charles A. Bouman and Dr. Mark J. Lowe S. Chen Final Exam October

More information

X A S. Overview. Modeling the Brain? ICA vs PCA. Independent Component Analysis

X A S. Overview. Modeling the Brain? ICA vs PCA. Independent Component Analysis fmri Course Lecture 9: Introduction to Independent Component Analysis Vince D. Calhoun, Ph.D. Director, Image Analysis & MR Research The Mind Research Network Associate Professor, Electrical and Computer

More information

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006 MIT OpenCourseWare http://ocw.mit.edu HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Introduction to Neuroimaging Janaina Mourao-Miranda

Introduction to Neuroimaging Janaina Mourao-Miranda Introduction to Neuroimaging Janaina Mourao-Miranda Neuroimaging techniques have changed the way neuroscientists address questions about functional anatomy, especially in relation to behavior and clinical

More information

An independent component analysis based tool for exploring functional connections in the brain

An independent component analysis based tool for exploring functional connections in the brain An independent component analysis based tool for exploring functional connections in the brain S. M. Rolfe a, L. Finney b, R. F. Tungaraza b, J. Guan b, L.G. Shapiro b, J. F. Brinkely b, A. Poliakov c,

More information

Functional Magnetic Resonance Imaging (fmri) Data Interpreted As Spatial Mixtures*

Functional Magnetic Resonance Imaging (fmri) Data Interpreted As Spatial Mixtures* 150 4th Joint Symposium on Neural Compuhtion Proceedings 1997 Functional Magnetic Resonance Imaging (fmri) Data Interpreted As Spatial Mixtures* Martin J. McKeownr MD, Scott Makeig PhD, Greg G. Brown PhD,

More information

Supplementary Figure 1. Decoding results broken down for different ROIs

Supplementary Figure 1. Decoding results broken down for different ROIs Supplementary Figure 1 Decoding results broken down for different ROIs Decoding results for areas V1, V2, V3, and V1 V3 combined. (a) Decoded and presented orientations are strongly correlated in areas

More information

Nonparametric Mean Shift Functional Detection in the Functional Space for Task and Resting-state fmri

Nonparametric Mean Shift Functional Detection in the Functional Space for Task and Resting-state fmri Nonparametric Mean Shift Functional Detection in the Functional Space for Task and Resting-state fmri Jian Cheng 1,2, Feng Shi 3, Kun Wang 1, Ming Song 1, Jiefeng Jiang 1, Lijuan Xu 1, Tianzi Jiang 1 1

More information

Assessment of Renal Function from 3D Dynamic Contrast Enhanced MR Images using Independent Component Analysis

Assessment of Renal Function from 3D Dynamic Contrast Enhanced MR Images using Independent Component Analysis Assessment of Renal Function from 3D Dynamic Contrast Enhanced MR Images using Independent Component Analysis Frank G. Zöllner 1,2, Marek Kocinski 3, Arvid Lundervold 2, Jarle Rørvik 1 1 Department for

More information

FASTICA FOR ULTRASOUND IMAGE DENOISING USING MULTISCALE RIDGELET TRANSFORM

FASTICA FOR ULTRASOUND IMAGE DENOISING USING MULTISCALE RIDGELET TRANSFORM FASTICA FOR ULTRASOUND IMAGE DENOISING USING MULTISCALE RIDGELET TRANSFORM Rohit Kumar Malik 1 and Ketaki Solanki 2 1 Application Engineer, Siebel CRM, Bangalore, Karnataka, India 2 Assistant Professor,

More information

First-level fmri modeling

First-level fmri modeling First-level fmri modeling Monday, Lecture 3 Jeanette Mumford University of Wisconsin - Madison What do we need to remember from the last lecture? What is the general structure of a t- statistic? How about

More information

CS 229 Final Project Report Learning to Decode Cognitive States of Rat using Functional Magnetic Resonance Imaging Time Series

CS 229 Final Project Report Learning to Decode Cognitive States of Rat using Functional Magnetic Resonance Imaging Time Series CS 229 Final Project Report Learning to Decode Cognitive States of Rat using Functional Magnetic Resonance Imaging Time Series Jingyuan Chen //Department of Electrical Engineering, cjy2010@stanford.edu//

More information

Statistical Analysis of Neuroimaging Data. Phebe Kemmer BIOS 516 Sept 24, 2015

Statistical Analysis of Neuroimaging Data. Phebe Kemmer BIOS 516 Sept 24, 2015 Statistical Analysis of Neuroimaging Data Phebe Kemmer BIOS 516 Sept 24, 2015 Review from last time Structural Imaging modalities MRI, CAT, DTI (diffusion tensor imaging) Functional Imaging modalities

More information

Cognitive States Detection in fmri Data Analysis using incremental PCA

Cognitive States Detection in fmri Data Analysis using incremental PCA Department of Computer Engineering Cognitive States Detection in fmri Data Analysis using incremental PCA Hoang Trong Minh Tuan, Yonggwan Won*, Hyung-Jeong Yang International Conference on Computational

More information

The organization of the human cerebral cortex estimated by intrinsic functional connectivity

The organization of the human cerebral cortex estimated by intrinsic functional connectivity 1 The organization of the human cerebral cortex estimated by intrinsic functional connectivity Journal: Journal of Neurophysiology Author: B. T. Thomas Yeo, et al Link: https://www.ncbi.nlm.nih.gov/pubmed/21653723

More information

Version. Getting Started: An fmri-cpca Tutorial

Version. Getting Started: An fmri-cpca Tutorial Version 11 Getting Started: An fmri-cpca Tutorial 2 Table of Contents Table of Contents... 2 Introduction... 3 Definition of fmri-cpca Data... 3 Purpose of this tutorial... 3 Prerequisites... 4 Used Terms

More information

FMRI Pre-Processing and Model- Based Statistics

FMRI Pre-Processing and Model- Based Statistics FMRI Pre-Processing and Model- Based Statistics Brief intro to FMRI experiments and analysis FMRI pre-stats image processing Simple Single-Subject Statistics Multi-Level FMRI Analysis Advanced FMRI Analysis

More information

Mapping of Hierarchical Activation in the Visual Cortex Suman Chakravartula, Denise Jones, Guillaume Leseur CS229 Final Project Report. Autumn 2008.

Mapping of Hierarchical Activation in the Visual Cortex Suman Chakravartula, Denise Jones, Guillaume Leseur CS229 Final Project Report. Autumn 2008. Mapping of Hierarchical Activation in the Visual Cortex Suman Chakravartula, Denise Jones, Guillaume Leseur CS229 Final Project Report. Autumn 2008. Introduction There is much that is unknown regarding

More information

Effect of age and dementia on topology of brain functional networks. Paul McCarthy, Luba Benuskova, Liz Franz University of Otago, New Zealand

Effect of age and dementia on topology of brain functional networks. Paul McCarthy, Luba Benuskova, Liz Franz University of Otago, New Zealand Effect of age and dementia on topology of brain functional networks Paul McCarthy, Luba Benuskova, Liz Franz University of Otago, New Zealand 1 Structural changes in aging brain Age-related changes in

More information

A Data-Driven fmri Neuronal Activation Analysis Method Using Temporal Clustering Technique and an Adaptive Voxel Selection Criterion

A Data-Driven fmri Neuronal Activation Analysis Method Using Temporal Clustering Technique and an Adaptive Voxel Selection Criterion A Data-Driven fmri Neuronal Activation Analysis Method Using Temporal Clustering Technique and an Adaptive Voxel Selection Criterion Sarah Lee, Fernando Zelaya, Stephanie A. Amiel and Michael J. Brammer

More information

Multivariate Analysis of fmri Group Data Using Independent Vector Analysis

Multivariate Analysis of fmri Group Data Using Independent Vector Analysis Multivariate Analysis of fmri Group Data Using Independent Vector Analysis Jong-Hwan Lee 1, Te-Won Lee 2, Ferenc A. Jolesz 1, and Seung-Schik Yoo 1,3 1 Department of Radiology, Brigham and Women s Hospital,

More information

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5 CS/NEUR125 Brains, Minds, and Machines Lab 8: Using fmri to Discover Language Areas in the Brain Due: Wednesday, April 5 In this lab, you will analyze fmri data from an experiment that was designed to

More information

Introductory Concepts for Voxel-Based Statistical Analysis

Introductory Concepts for Voxel-Based Statistical Analysis Introductory Concepts for Voxel-Based Statistical Analysis John Kornak University of California, San Francisco Department of Radiology and Biomedical Imaging Department of Epidemiology and Biostatistics

More information

Quality Checking an fmri Group Result (art_groupcheck)

Quality Checking an fmri Group Result (art_groupcheck) Quality Checking an fmri Group Result (art_groupcheck) Paul Mazaika, Feb. 24, 2009 A statistical parameter map of fmri group analyses relies on the assumptions of the General Linear Model (GLM). The assumptions

More information

Independent components of face images: A represent at ion for face recognit ion

Independent components of face images: A represent at ion for face recognit ion 4th Joint Symposium on Neural Computation Proceedings 1997 Independent components of face images: A represent at ion for face recognit ion Marian Stewart Bartlett Terrence J. Sejnowski University of California

More information

Supplementary Data. in residuals voxel time-series exhibiting high variance, for example, large sinuses.

Supplementary Data. in residuals voxel time-series exhibiting high variance, for example, large sinuses. Supplementary Data Supplementary Materials and Methods Step-by-step description of principal component-orthogonalization technique Below is a step-by-step description of the principal component (PC)-orthogonalization

More information

An ICA based Approach for Complex Color Scene Text Binarization

An ICA based Approach for Complex Color Scene Text Binarization An ICA based Approach for Complex Color Scene Text Binarization Siddharth Kherada IIIT-Hyderabad, India siddharth.kherada@research.iiit.ac.in Anoop M. Namboodiri IIIT-Hyderabad, India anoop@iiit.ac.in

More information

Session scaling; global mean scaling; block effect; mean intensity scaling

Session scaling; global mean scaling; block effect; mean intensity scaling Types of Scaling Session scaling; global mean scaling; block effect; mean intensity scaling Purpose remove intensity differences between runs (i.e., the mean of the whole time series). whole time series

More information

Learning Common Features from fmri Data of Multiple Subjects John Ramish Advised by Prof. Tom Mitchell 8/10/04

Learning Common Features from fmri Data of Multiple Subjects John Ramish Advised by Prof. Tom Mitchell 8/10/04 Learning Common Features from fmri Data of Multiple Subjects John Ramish Advised by Prof. Tom Mitchell 8/10/04 Abstract Functional Magnetic Resonance Imaging (fmri), a brain imaging technique, has allowed

More information

Multi-voxel pattern analysis: Decoding Mental States from fmri Activity Patterns

Multi-voxel pattern analysis: Decoding Mental States from fmri Activity Patterns Multi-voxel pattern analysis: Decoding Mental States from fmri Activity Patterns Artwork by Leon Zernitsky Jesse Rissman NITP Summer Program 2012 Part 1 of 2 Goals of Multi-voxel Pattern Analysis Decoding

More information

Slides adapted from Marshall Tappen and Bryan Russell. Algorithms in Nature. Non-negative matrix factorization

Slides adapted from Marshall Tappen and Bryan Russell. Algorithms in Nature. Non-negative matrix factorization Slides adapted from Marshall Tappen and Bryan Russell Algorithms in Nature Non-negative matrix factorization Dimensionality Reduction The curse of dimensionality: Too many features makes it difficult to

More information

Histograms. h(r k ) = n k. p(r k )= n k /NM. Histogram: number of times intensity level rk appears in the image

Histograms. h(r k ) = n k. p(r k )= n k /NM. Histogram: number of times intensity level rk appears in the image Histograms h(r k ) = n k Histogram: number of times intensity level rk appears in the image p(r k )= n k /NM normalized histogram also a probability of occurence 1 Histogram of Image Intensities Create

More information

A Functional Connectivity Inspired Approach to Non-Local fmri Analysis

A Functional Connectivity Inspired Approach to Non-Local fmri Analysis A Functional Connectivity Inspired Approach to Non-Local fmri Analysis Anders Eklund, Mats Andersson and Hans Knutsson Linköping University Post Print N.B.: When citing this work, cite the original article.

More information

Local Filter Selection Boosts Performance of Automatic Speechreading

Local Filter Selection Boosts Performance of Automatic Speechreading 52 5th Joint Symposium on Neural Computation Proceedings, UCSD (1998) Local Filter Selection Boosts Performance of Automatic Speechreading Michael S. Gray, Terrence J. Sejnowski Computational Neurobiology

More information

An ICA-Based Multivariate Discretization Algorithm

An ICA-Based Multivariate Discretization Algorithm An ICA-Based Multivariate Discretization Algorithm Ye Kang 1,2, Shanshan Wang 1,2, Xiaoyan Liu 1, Hokyin Lai 1, Huaiqing Wang 1, and Baiqi Miao 2 1 Department of Information Systems, City University of

More information

Pixels to Voxels: Modeling Visual Representation in the Human Brain

Pixels to Voxels: Modeling Visual Representation in the Human Brain Pixels to Voxels: Modeling Visual Representation in the Human Brain Authors: Pulkit Agrawal, Dustin Stansbury, Jitendra Malik, Jack L. Gallant Presenters: JunYoung Gwak, Kuan Fang Outlines Background Motivation

More information

Basic Introduction to Data Analysis. Block Design Demonstration. Robert Savoy

Basic Introduction to Data Analysis. Block Design Demonstration. Robert Savoy Basic Introduction to Data Analysis Block Design Demonstration Robert Savoy Sample Block Design Experiment Demonstration Use of Visual and Motor Task Separability of Responses Combined Visual and Motor

More information

A NEURAL NETWORK BASED IMAGING SYSTEM FOR fmri ANALYSIS IMPLEMENTING WAVELET METHOD

A NEURAL NETWORK BASED IMAGING SYSTEM FOR fmri ANALYSIS IMPLEMENTING WAVELET METHOD 6th WSEAS International Conference on CIRCUITS, SYSTEMS, ELECTRONICS,CONTROL & SIGNAL PROCESSING, Cairo, Egypt, Dec 29-31, 2007 454 A NEURAL NETWORK BASED IMAGING SYSTEM FOR fmri ANALYSIS IMPLEMENTING

More information

Extracting Coactivated Features from Multiple Data Sets

Extracting Coactivated Features from Multiple Data Sets Extracting Coactivated Features from Multiple Data Sets Michael U. Gutmann University of Helsinki michael.gutmann@helsinki.fi Aapo Hyvärinen University of Helsinki aapo.hyvarinen@helsinki.fi Michael U.

More information

Independent Component Analysis Using Random Projection For Data Pre-Processing

Independent Component Analysis Using Random Projection For Data Pre-Processing www.ijcsi.org 200 Independent Component Analysis Using Random Projection For Data Pre-Processing Abstract There is an inherent difficulty of finding out latent structures within high dimensional data repository

More information

A Framework for Evaluating ICA Methods of Artifact Removal from Multichannel EEG

A Framework for Evaluating ICA Methods of Artifact Removal from Multichannel EEG A Framework for Evaluating ICA Methods of Artifact Removal from Multichannel EEG Kevin A. Glass 1, Gwen A. Frishkoff 2, Robert M. Frank 1, Colin Davey 3, Joseph Dien 4, Allen D. Malony 1, Don M. Tucker

More information

Extracting Coactivated Features from Multiple Data Sets

Extracting Coactivated Features from Multiple Data Sets Extracting Coactivated Features from Multiple Data Sets Michael U. Gutmann and Aapo Hyvärinen Dept. of Computer Science and HIIT Dept. of Mathematics and Statistics P.O. Box 68, FIN-4 University of Helsinki,

More information

ICA mixture models for image processing

ICA mixture models for image processing I999 6th Joint Sy~nposiurn orz Neural Computation Proceedings ICA mixture models for image processing Te-Won Lee Michael S. Lewicki The Salk Institute, CNL Carnegie Mellon University, CS & CNBC 10010 N.

More information

Reconstructing visual experiences from brain activity evoked by natural movies

Reconstructing visual experiences from brain activity evoked by natural movies Reconstructing visual experiences from brain activity evoked by natural movies Shinji Nishimoto, An T. Vu, Thomas Naselaris, Yuval Benjamini, Bin Yu, and Jack L. Gallant, Current Biology, 2011 -Yi Gao,

More information

Clusterwise Independent Component Analysis (C-ICA) for multi-subject fmri data

Clusterwise Independent Component Analysis (C-ICA) for multi-subject fmri data Clusterwise Independent Component Analysis (C-ICA) for multi-subject fmri data A novel unsupervised method for assessing differences across subjects (groups) in functional connectivity patterns Jeffrey

More information

Comparison of Two Exploratory Data Analysis Methods for fmri: Unsupervised Clustering Versus Independent Component Analysis

Comparison of Two Exploratory Data Analysis Methods for fmri: Unsupervised Clustering Versus Independent Component Analysis IEEE TRANSACTIONS ON INFORMATION TECHNOLOGY IN BIOMEDICINE, VOL. 8, NO. 3, SEPTEMBER 2004 387 Comparison of Two Exploratory Data Analysis Methods for fmri: Unsupervised Clustering Versus Independent Component

More information

A TEMPORAL FREQUENCY DESCRIPTION OF THE SPATIAL CORRELATION BETWEEN VOXELS IN FMRI DUE TO SPATIAL PROCESSING. Mary C. Kociuba

A TEMPORAL FREQUENCY DESCRIPTION OF THE SPATIAL CORRELATION BETWEEN VOXELS IN FMRI DUE TO SPATIAL PROCESSING. Mary C. Kociuba A TEMPORAL FREQUENCY DESCRIPTION OF THE SPATIAL CORRELATION BETWEEN VOXELS IN FMRI DUE TO SPATIAL PROCESSING by Mary C. Kociuba A Thesis Submitted to the Faculty of the Graduate School, Marquette University,

More information

Statistical Methods in functional MRI. False Discovery Rate. Issues with FWER. Lecture 7.2: Multiple Comparisons ( ) 04/25/13

Statistical Methods in functional MRI. False Discovery Rate. Issues with FWER. Lecture 7.2: Multiple Comparisons ( ) 04/25/13 Statistical Methods in functional MRI Lecture 7.2: Multiple Comparisons 04/25/13 Martin Lindquist Department of iostatistics Johns Hopkins University Issues with FWER Methods that control the FWER (onferroni,

More information

A Computational Approach To Understanding The Response Properties Of Cells In The Visual System

A Computational Approach To Understanding The Response Properties Of Cells In The Visual System A Computational Approach To Understanding The Response Properties Of Cells In The Visual System David C. Noelle Assistant Professor of Computer Science and Psychology Vanderbilt University March 3, 2004

More information

Functional MRI in Clinical Research and Practice Preprocessing

Functional MRI in Clinical Research and Practice Preprocessing Functional MRI in Clinical Research and Practice Preprocessing fmri Preprocessing Slice timing correction Geometric distortion correction Head motion correction Temporal filtering Intensity normalization

More information

7/15/2016 ARE YOUR ANALYSES TOO WHY IS YOUR ANALYSIS PARAMETRIC? PARAMETRIC? That s not Normal!

7/15/2016 ARE YOUR ANALYSES TOO WHY IS YOUR ANALYSIS PARAMETRIC? PARAMETRIC? That s not Normal! ARE YOUR ANALYSES TOO PARAMETRIC? That s not Normal! Martin M Monti http://montilab.psych.ucla.edu WHY IS YOUR ANALYSIS PARAMETRIC? i. Optimal power (defined as the probability to detect a real difference)

More information

Independent Component Analysis (ICA) in Real and Complex Fourier Space: An Application to Videos and Natural Scenes

Independent Component Analysis (ICA) in Real and Complex Fourier Space: An Application to Videos and Natural Scenes Independent Component Analysis (ICA) in Real and Complex Fourier Space: An Application to Videos and Natural Scenes By Nimit Kumar* and Shantanu Sharma** {nimitk@iitk.ac.in, shsharma@iitk.ac.in} A Project

More information

Methods for data preprocessing

Methods for data preprocessing Methods for data preprocessing John Ashburner Wellcome Trust Centre for Neuroimaging, 12 Queen Square, London, UK. Overview Voxel-Based Morphometry Morphometry in general Volumetrics VBM preprocessing

More information

EPI Data Are Acquired Serially. EPI Data Are Acquired Serially 10/23/2011. Functional Connectivity Preprocessing. fmri Preprocessing

EPI Data Are Acquired Serially. EPI Data Are Acquired Serially 10/23/2011. Functional Connectivity Preprocessing. fmri Preprocessing Functional Connectivity Preprocessing Geometric distortion Head motion Geometric distortion Head motion EPI Data Are Acquired Serially EPI Data Are Acquired Serially descending 1 EPI Data Are Acquired

More information

SPM8 for Basic and Clinical Investigators. Preprocessing

SPM8 for Basic and Clinical Investigators. Preprocessing SPM8 for Basic and Clinical Investigators Preprocessing fmri Preprocessing Slice timing correction Geometric distortion correction Head motion correction Temporal filtering Intensity normalization Spatial

More information

SPM8 for Basic and Clinical Investigators. Preprocessing. fmri Preprocessing

SPM8 for Basic and Clinical Investigators. Preprocessing. fmri Preprocessing SPM8 for Basic and Clinical Investigators Preprocessing fmri Preprocessing Slice timing correction Geometric distortion correction Head motion correction Temporal filtering Intensity normalization Spatial

More information

FSL Workshop Session 3 David Smith & John Clithero

FSL Workshop Session 3 David Smith & John Clithero FSL Workshop 12.09.08 Session 3 David Smith & John Clithero What is MELODIC? Probabilistic ICA Improves upon standard ICA Allows for inference Avoids over-fitting Three stage process ( ppca ) 1.) Dimension

More information

Parallel ICA Methods for EEG Neuroimaging

Parallel ICA Methods for EEG Neuroimaging Parallel ICA Methods for EEG Neuroimaging Dan B. Keith, Christian C. Hoge, Robert M. Frank, and Allen D. Malony Neuroinformatics Center University of Oregon Eugene, Oregon, USA {dkeith, rmfrank, hoge,

More information

Function-Structure Integration in FreeSurfer

Function-Structure Integration in FreeSurfer Function-Structure Integration in FreeSurfer Outline Function-Structure Integration Function-Structure Registration in FreeSurfer fmri Analysis Preprocessing First-Level Analysis Higher-Level (Group) Analysis

More information

I How does the formulation (5) serve the purpose of the composite parameterization

I How does the formulation (5) serve the purpose of the composite parameterization Supplemental Material to Identifying Alzheimer s Disease-Related Brain Regions from Multi-Modality Neuroimaging Data using Sparse Composite Linear Discrimination Analysis I How does the formulation (5)

More information

Medical Image Analysis

Medical Image Analysis Medical Image Analysis Instructor: Moo K. Chung mchung@stat.wisc.edu Lecture 10. Multiple Comparisons March 06, 2007 This lecture will show you how to construct P-value maps fmri Multiple Comparisons 4-Dimensional

More information

Nuts & Bolts of Advanced Imaging. Image Reconstruction Parallel Imaging

Nuts & Bolts of Advanced Imaging. Image Reconstruction Parallel Imaging Nuts & Bolts of Advanced Imaging Image Reconstruction Parallel Imaging Michael S. Hansen, PhD Magnetic Resonance Technology Program National Institutes of Health, NHLBI Declaration of Financial Interests

More information

International Journal of Digital Application & Contemporary research Website: (Volume 1, Issue 8, March 2013)

International Journal of Digital Application & Contemporary research Website:   (Volume 1, Issue 8, March 2013) Face Recognition using ICA for Biometric Security System Meenakshi A.D. Abstract An amount of current face recognition procedures use face representations originate by unsupervised statistical approaches.

More information

Multivariate pattern classification

Multivariate pattern classification Multivariate pattern classification Thomas Wolbers Space & Ageing Laboratory (www.sal.mvm.ed.ac.uk) Centre for Cognitive and Neural Systems & Centre for Cognitive Ageing and Cognitive Epidemiology Outline

More information

Multivariate Pattern Classification. Thomas Wolbers Space and Aging Laboratory Centre for Cognitive and Neural Systems

Multivariate Pattern Classification. Thomas Wolbers Space and Aging Laboratory Centre for Cognitive and Neural Systems Multivariate Pattern Classification Thomas Wolbers Space and Aging Laboratory Centre for Cognitive and Neural Systems Outline WHY PATTERN CLASSIFICATION? PROCESSING STREAM PREPROCESSING / FEATURE REDUCTION

More information

FMA901F: Machine Learning Lecture 3: Linear Models for Regression. Cristian Sminchisescu

FMA901F: Machine Learning Lecture 3: Linear Models for Regression. Cristian Sminchisescu FMA901F: Machine Learning Lecture 3: Linear Models for Regression Cristian Sminchisescu Machine Learning: Frequentist vs. Bayesian In the frequentist setting, we seek a fixed parameter (vector), with value(s)

More information

5. Spike Sorting. By: Clinton Zheng Da Goh

5. Spike Sorting. By: Clinton Zheng Da Goh 5. Spike Sorting By: Clinton Zheng Da Goh 69 5.1 Introduction Recognising the response of stimulated neurons is essential for neurophysiological studies. Most neurons respond to external stimuli by firing

More information

Surface-based Analysis: Inter-subject Registration and Smoothing

Surface-based Analysis: Inter-subject Registration and Smoothing Surface-based Analysis: Inter-subject Registration and Smoothing Outline Exploratory Spatial Analysis Coordinate Systems 3D (Volumetric) 2D (Surface-based) Inter-subject registration Volume-based Surface-based

More information

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2008

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2008 MIT OpenCourseWare http://ocw.mit.edu HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

LibrarY of Complex ICA Algorithms (LYCIA) Toolbox v1.2. Walk-through

LibrarY of Complex ICA Algorithms (LYCIA) Toolbox v1.2. Walk-through LibrarY of Complex ICA Algorithms (LYCIA) Toolbox v1.2 Walk-through Josselin Dea, Sai Ma, Patrick Sykes and Tülay Adalı Department of CSEE, University of Maryland, Baltimore County, MD 212150 Updated:

More information

Why Normalizing v? Why did we normalize v on the right side? Because we want the length of the left side to be the eigenvalue

Why Normalizing v? Why did we normalize v on the right side? Because we want the length of the left side to be the eigenvalue Why Normalizing v? Why did we normalize v on the right side? Because we want the length of the left side to be the eigenvalue 1 CCI PCA Algorithm (1) 2 CCI PCA Algorithm (2) 3 PCA from the FERET Face Image

More information

Modeling the Other Race Effect with ICA

Modeling the Other Race Effect with ICA Modeling the Other Race Effect with ICA Marissa Grigonis Department of Cognitive Science University of California, San Diego La Jolla, CA 92093 mgrigoni@cogsci.uscd.edu Abstract Principal component analysis

More information

Basic fmri Design and Analysis. Preprocessing

Basic fmri Design and Analysis. Preprocessing Basic fmri Design and Analysis Preprocessing fmri Preprocessing Slice timing correction Geometric distortion correction Head motion correction Temporal filtering Intensity normalization Spatial filtering

More information

Temporal Feature Selection for fmri Analysis

Temporal Feature Selection for fmri Analysis Temporal Feature Selection for fmri Analysis Mark Palatucci School of Computer Science Carnegie Mellon University Pittsburgh, Pennsylvania markmp@cmu.edu ABSTRACT Recent work in neuroimaging has shown

More information

Performance Evaluation of the TINA Medical Image Segmentation Algorithm on Brainweb Simulated Images

Performance Evaluation of the TINA Medical Image Segmentation Algorithm on Brainweb Simulated Images Tina Memo No. 2008-003 Internal Memo Performance Evaluation of the TINA Medical Image Segmentation Algorithm on Brainweb Simulated Images P. A. Bromiley Last updated 20 / 12 / 2007 Imaging Science and

More information

Adaptive Waveform Inversion: Theory Mike Warner*, Imperial College London, and Lluís Guasch, Sub Salt Solutions Limited

Adaptive Waveform Inversion: Theory Mike Warner*, Imperial College London, and Lluís Guasch, Sub Salt Solutions Limited Adaptive Waveform Inversion: Theory Mike Warner*, Imperial College London, and Lluís Guasch, Sub Salt Solutions Limited Summary We present a new method for performing full-waveform inversion that appears

More information

CSC 411: Lecture 14: Principal Components Analysis & Autoencoders

CSC 411: Lecture 14: Principal Components Analysis & Autoencoders CSC 411: Lecture 14: Principal Components Analysis & Autoencoders Raquel Urtasun & Rich Zemel University of Toronto Nov 4, 2015 Urtasun & Zemel (UofT) CSC 411: 14-PCA & Autoencoders Nov 4, 2015 1 / 18

More information

Collaborative Sparsity and Compressive MRI

Collaborative Sparsity and Compressive MRI Modeling and Computation Seminar February 14, 2013 Table of Contents 1 T2 Estimation 2 Undersampling in MRI 3 Compressed Sensing 4 Model-Based Approach 5 From L1 to L0 6 Spatially Adaptive Sparsity MRI

More information

Preprocessing II: Between Subjects John Ashburner

Preprocessing II: Between Subjects John Ashburner Preprocessing II: Between Subjects John Ashburner Pre-processing Overview Statistics or whatever fmri time-series Anatomical MRI Template Smoothed Estimate Spatial Norm Motion Correct Smooth Coregister

More information

Chapter 3 Set Redundancy in Magnetic Resonance Brain Images

Chapter 3 Set Redundancy in Magnetic Resonance Brain Images 16 Chapter 3 Set Redundancy in Magnetic Resonance Brain Images 3.1 MRI (magnetic resonance imaging) MRI is a technique of measuring physical structure within the human anatomy. Our proposed research focuses

More information

Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging

Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging 1 CS 9 Final Project Classification of Subject Motion for Improved Reconstruction of Dynamic Magnetic Resonance Imaging Feiyu Chen Department of Electrical Engineering ABSTRACT Subject motion is a significant

More information

Bayesian Inference in fmri Will Penny

Bayesian Inference in fmri Will Penny Bayesian Inference in fmri Will Penny Bayesian Approaches in Neuroscience Karolinska Institutet, Stockholm February 2016 Overview Posterior Probability Maps Hemodynamic Response Functions Population

More information

Independent Component Analysis of fmri Data in the Complex Domain

Independent Component Analysis of fmri Data in the Complex Domain Magnetic Resonance in Medicine 48:180 192 (2002) Independent Component Analysis of fmri Data in the Complex Domain V.D. Calhoun, 1,4 * T. Adalı, 4 G.D. Pearlson, 1 P.C.M. van Zijl, 2,3 and J.J. Pekar 2,3

More information

Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong)

Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong) Biometrics Technology: Image Processing & Pattern Recognition (by Dr. Dickson Tong) References: [1] http://homepages.inf.ed.ac.uk/rbf/hipr2/index.htm [2] http://www.cs.wisc.edu/~dyer/cs540/notes/vision.html

More information

A GPU Accelerated Interactive Interface for Exploratory Functional Connectivity Analysis of fmri Data

A GPU Accelerated Interactive Interface for Exploratory Functional Connectivity Analysis of fmri Data A GPU Accelerated Interactive Interface for Exploratory Functional Connectivity Analysis of fmri Data Anders Eklund, Ola Friman, Mats Andersson and Hans Knutsson Linköping University Post Print N.B.: When

More information

Compression of Stereo Images using a Huffman-Zip Scheme

Compression of Stereo Images using a Huffman-Zip Scheme Compression of Stereo Images using a Huffman-Zip Scheme John Hamann, Vickey Yeh Department of Electrical Engineering, Stanford University Stanford, CA 94304 jhamann@stanford.edu, vickey@stanford.edu Abstract

More information

Improving CCA based fmri Analysis by Covariance Pooling - Using the GPU for Statistical Inference

Improving CCA based fmri Analysis by Covariance Pooling - Using the GPU for Statistical Inference Improving CCA based fmri Analysis by Covariance Pooling - Using the GPU for Statistical Inference Anders Eklund, Mats Andersson and Hans Knutsson Linköping University Post Print N.B.: When citing this

More information

I.e. Sex differences in child appetitive traits and Eating in the Absence of Hunger:

I.e. Sex differences in child appetitive traits and Eating in the Absence of Hunger: Supplementary Materials I. Evidence of sex differences on eating behavior in children I.e. Sex differences in child appetitive traits and Eating in the Absence of Hunger: Table 2. Parent Report for Child

More information

Recursive ICA. Abstract

Recursive ICA. Abstract Recursive ICA Honghao Shan, Lingyun Zhang, Garrison W. Cottrell Department of Computer Science and Engineering University of California, San Diego La Jolla, CA 92093-0404 {hshan,lingyun,gary}@cs.ucsd.edu

More information

CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK

CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK Ocular fundus images can provide information about ophthalmic, retinal and even systemic diseases such as hypertension, diabetes, macular degeneration

More information

Attention modulates spatial priority maps in human occipital, parietal, and frontal cortex

Attention modulates spatial priority maps in human occipital, parietal, and frontal cortex Attention modulates spatial priority maps in human occipital, parietal, and frontal cortex Thomas C. Sprague 1 and John T. Serences 1,2 1 Neuroscience Graduate Program, University of California San Diego

More information

MultiVariate Bayesian (MVB) decoding of brain images

MultiVariate Bayesian (MVB) decoding of brain images MultiVariate Bayesian (MVB) decoding of brain images Alexa Morcom Edinburgh SPM course 2015 With thanks to J. Daunizeau, K. Brodersen for slides stimulus behaviour encoding of sensorial or cognitive state?

More information

&$7 ABSTRACT 1. INTRODUCTION. Keywords: Independent component analysis, ICA, principal component analysis, PCA, face recognition.

&$7 ABSTRACT 1. INTRODUCTION. Keywords: Independent component analysis, ICA, principal component analysis, PCA, face recognition. &$7 Proceedings of the SPIE Symposium on Electron~c lmaglng Science and Technology Conference on Human V~sion and Electronic lmagmg Ill, San Jose California, 3299 528-539 (1998) ndependent component representations

More information

Clustering and Visualisation of Data

Clustering and Visualisation of Data Clustering and Visualisation of Data Hiroshi Shimodaira January-March 28 Cluster analysis aims to partition a data set into meaningful or useful groups, based on distances between data points. In some

More information