function outpoints = icbm_spm2tal(inpoints) % % This function converts coordinates from MNI space (normalized % using the SPM software package) to Talairach space using the % icbm2tal transform developed and validated by Jack Lancaster % at the Research Imaging Center in San Antonio, Texas. % % http://www3.interscience.wiley.com/cgi-bin/abstract/114104479/ABSTRACT % % FORMAT outpoints = icbm_spm2tal(inpoints) % Where inpoints is N by 3 or 3 by N matrix of coordinates % (N being the number of points) % % ric.uthscsa.edu 3/14/07 dimdim = find(size(inpoints) == 3); if isempty(dimdim) error('input must be a N by 3 or 3 by N matrix') end if dimdim == 2 inpoints = inpoints'; end % Transformation matrices, different for each software package icbm_spm = [0.9254 0.0024 -0.0118 -1.0207 -0.0048 0.9316 -0.0871 -1.7667 0.0152 0.0883 0.8924 4.0926 0.0000 0.0000 0.0000 1.0000]; % apply the transformation matrix inpoints = [inpoints; ones(1, size(inpoints, 2))]; inpoints = icbm_spm * inpoints; % format the outpoints, transpose if necessary outpoints = inpoints(1:3, :); if dimdim == 2 outpoints = outpoints'; end