<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
Dear Andreas,
<div class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">
<div dir="ltr" class="">
<div style="font-family: Helvetica; font-size: 12px;" class="">after having calculated the sources of a MMN paradigm (4D-system), I’d like to plot the results on one of the anatomy template files in the fieldtrip directory (single_subj_T1_1mm.nii) or alternatively
 on a MNI T1 template file (mni_icbm152_t1_tal_nlin_sym_09a.nii). Unfortunately, this is not working well… As you can see on the attached picture, the functional data is rotated by 90 degrees. </div>
<div style="font-family: Helvetica; font-size: 12px;" class=""><br class="">
</div>
<div style="font-family: Helvetica; font-size: 12px;" class="">I guess that something gets mixed because of the different coordsystems of functional and anatomical data. The functional data is 4D, which means ALS orientation. The anatomical is MNI, so RAS orientation.
 The plotting works fine, if I use a mri file which was converted in field trip (V2.mri) and therefore is also in ALS orientation. However, the anatomy doesn’t look very pretty… </div>
</div>
</div>
</blockquote>
<blockquote type="cite" class="">
<div class="">
<div dir="ltr" class="">
<div style="font-family: Helvetica; font-size: 12px;" class=""><br class="">
</div>
<div style="font-family: Helvetica; font-size: 12px;" class="">Is there any way that I can transform the functional data to RAS orientation or the anatomical data to ALS orientation, respectively?</div>
</div>
</div>
</blockquote>
<blockquote type="cite" class="">
<div class="">
<div dir="ltr" class="">
<div style="font-family: Helvetica; font-size: 12px;" class=""><br class="">
</div>
<div style="font-family: Helvetica; font-size: 12px;" class="">I tried with ft_volumerealign. However, since the template file has no fiducials, it is hard to really precisely do this. </div>
</div>
</div>
</blockquote>
<div><br class="">
</div>
<div>Fair point. I would however do it the other way around, using the V2 to get the transformation from voxel space to MNI-RAS, and then use the inverse of the transformation on the functional data: in this case you could use ft_volumenormalise, with cfg.nonlinear
 = ‘no’. Alternatively, if you are using this procedure: <a href="http://www.fieldtriptoolbox.org/tutorial/sourcemodel#subject-specific_grids_that_are_equivalent_across_subjects_in_normalized_space" class="">
http://www.fieldtriptoolbox.org/tutorial/sourcemodel#subject-specific_grids_that_are_equivalent_across_subjects_in_normalized_space</a>, you could directly replace the source.pos of your functional data with the template.pos and then do the interpolation.</div>
<div><br class="">
</div>
<div>To summarize: </div>
<div><br class="">
</div>
<div>either:</div>
<div><br class="">
</div>
<div>mri = ft_read_mri(‘V2.mri’);</div>
<div>mri.coordsys = ‘bti’;</div>
<div><br class="">
</div>
<div>cfg = [];</div>
<div>cfg.nonlinear=’no’;</div>
<div>mrin = ft_volumenormalise(cfg, mri);</div>
<div><br class="">
</div>
<div>transform_vox2bti = mri.transform;</div>
<div>transform_vox2spm = mrin.transform;</div>
<div>transform_bti2spm = transform_vox2spm/transform_vox2bti</div>
<div>source = ft_transform_geometry(transform_bti2spm, source);</div>
<div><br class="">
</div>
<div>source_int = ft_sourceinterpolate(somecfg, source, niceanatomical);</div>
<div><br class="">
</div>
<div>or:</div>
<div><br class="">
</div>
<div>source.pos = templat.pos;</div>
<div>source_int = ft_sourceinterpolate(somecfg, source, niceanatomical);</div>
<div><br class="">
</div>
<div>Best,</div>
<div>JM</div>
<div><br class="">
</div>
<div><br class="">
</div>
<br class="">
<blockquote type="cite" class="">
<div class="">
<div dir="ltr" class="">
<div style="font-family: Helvetica; font-size: 12px;" class="">Any input on how to plot the sources on one of these nice anatomical files is highly appreciated!</div>
<div style="font-family: Helvetica; font-size: 12px;" class=""><br class="">
</div>
<div style="font-family: Helvetica; font-size: 12px;" class="">Thanks and best regards,</div>
<div style="font-family: Helvetica; font-size: 12px;" class=""><br class="">
</div>
<div style="font-family: Helvetica; font-size: 12px;" class="">Andreas</div>
<div style="font-family: Helvetica; font-size: 12px;" class=""><br class="">
</div>
<div class=""><br class="">
</div>
-- <br class="">
<div class="gmail_signature" data-smartmail="gmail_signature">
<div class=""></div>
<div class="">Dipl.-Psych. Andreas Sauer</div>
<div class="">Max Planck Institute for Brain Research</div>
<div class="">Deutschordenstraße 46</div>
<div class="">60528 Frankfurt am Main</div>
<div class="">Germany</div>
<div class=""><br class="">
</div>
<div class="">T: +49 69 96769 278</div>
<div class="">F: +49 69 96769 327</div>
<div class="">Email: <a href="mailto:sauer.mpih@gmail.com" target="_blank" class="">
sauer.mpih@gmail.com</a></div>
<div class=""><a href="http://www.brain.mpg.de/" target="_blank" class="">www.brain.mpg.de</a></div>
</div>
</div>
<span id="cid:3A39F982-C926-48C3-8770-A46CE8880AAA@home"><Rotated_Source.png></span>_______________________________________________<br class="">
fieldtrip mailing list<br class="">
<a href="mailto:fieldtrip@donders.ru.nl" class="">fieldtrip@donders.ru.nl</a><br class="">
http://mailman.science.ru.nl/mailman/listinfo/fieldtrip</div>
</blockquote>
</div>
<br class="">
</div>
</body>
</html>