<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Dear Jung,<br>
<br>
the tranformation was done by coregistering the template MRI head with
the sphere model as explained on this tutorial page <br>
<br>
<a class="moz-txt-link-freetext" href="http://www.sccn.ucsd.edu/eeglab/dipfittut/dipfit.html#topoplot">http://www.sccn.ucsd.edu/eeglab/dipfittut/dipfit.html#topoplot</a><br>
<br>
The transformation is embeded in the function dipplot().<br>
The new DIPFIT2 that will be released (very soon hopefully) has a
function that convert spherical coordinates to closest MNI coordinates
using the following homogenous tranformation matrix.<br>
<br>
besa2SPM = [<br>
   0.0101   -0.9400         0    0.5588<br>
    1.1889    0.0080    0.0530  -18.0041<br>
   -0.0005   -0.0000    1.1268    1.8045<br>
         0         0         0    1.0000 ];<br>
<br>
test_spherical_point = [10 10 10]; % sphere radius is 85 mn<br>
<br>
transformed_mni_point = besa2SPM * [test_spherical_point 1]';<br>
transformed_mni_point = transformed_mni_point(1:3)'<br>
<br>
You may then transformed the MNI coordinates to talairach coordinates
using other matlab scripts, for example:<br>
<br>
<a class="moz-txt-link-freetext" href="http://www.mrc-cbu.cam.ac.uk/Imaging/Common/mnispace.shtml">http://www.mrc-cbu.cam.ac.uk/Imaging/Common/mnispace.shtml</a><br>
<pre>containing the short function

function outpoint = aff_mni2tal(inpoint)
Tfrm = [0.88 0 0 -0.8;0 0.97 0 -3.32; 0 0.05 0.88 -0.44;0 0 0 1];
tmp = Tfrm * [inpoint 1]';
outpoint = tmp(1:3)';

or
</pre>
<a class="moz-txt-link-freetext" href="http://godzilla.kennedykrieger.org/sw/mri_toolbox/mri_toolbox/mni2tal.html">http://godzilla.kennedykrieger.org/sw/mri_toolbox/mri_toolbox/mni2tal.html</a><br>
<br>
Hope this helps,<br>
<br>
Arno<br>
<br>
Jung, Ki-Young wrote:
<blockquote cite="mid1139452665859.2843@smcmail.samsung.co.kr"
 type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta name="Generator" content="Microsoft Word 11 (filtered medium)">
  <style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Batang;
        panose-1:2 3 6 0 0 1 1 1 1 1;}
@font-face
        {font-family:Batang;
        panose-1:2 3 6 0 0 1 1 1 1 1;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        text-align:justify;
        text-justify:inter-ideograph;
        text-autospace:none;
        word-break:break-hangul;
        font-size:10.0pt;
        font-family:Batang;}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:Arial;
        color:windowtext;
        font-weight:normal;
        font-style:normal;
        text-decoration:none none;}
 /* Page Definitions */
 @page Section1
        {size:595.3pt 841.9pt;
        margin:99.25pt 3.0cm 3.0cm 3.0cm;
        layout-grid:18.0pt;}
div.Section1
        {page:Section1;}
-->
  </style>
  <div class="Section1" style="">
  <p class="MsoNormal"><font face="Arial" size="3"><span
 style="font-size: 12pt; font-family: Arial;" lang="EN-US">Dear all<o:p></o:p></span></font></p>
  <p class="MsoNormal"><font face="Arial" size="3"><span
 style="font-size: 12pt; font-family: Arial;" lang="EN-US">I’d like to
know which method used to do transposition
of the dipoles from the spherical head model to the standard MRI
template in
dipfit function.<o:p></o:p></span></font></p>
  <p class="MsoNormal"><font face="Arial" size="3"><span
 style="font-size: 12pt; font-family: Arial;" lang="EN-US">Any
references or comments will be welcome.<o:p></o:p></span></font></p>
  <p class="MsoNormal"><font face="Arial" size="3"><span
 style="font-size: 12pt; font-family: Arial;" lang="EN-US">Many thanks<o:p></o:p></span></font></p>
  <p class="MsoNormal"><font face="Arial" size="3"><span
 style="font-size: 12pt; font-family: Arial;" lang="EN-US"><o:p> </o:p></span></font></p>
  <p class="MsoNormal"><font face="바탕" size="2"><span
 style="font-size: 10pt;" lang="EN-US">Jung, Ki-Young<o:p></o:p></span></font></p>
  </div>
  <img moz-do-not-send="true"
 src="http://smc.samsung.co.kr/smcmail/cgi-bin/setconfirm.cgi?k=11394526659536520&u=kyjung&d=smc.samsung.co.kr"
 height="1" width="1"></blockquote>
<br>
</body>
</html>