JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for FSL Archives


FSL Archives

FSL Archives


FSL@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

FSL Home

FSL Home

FSL  November 2010

FSL November 2010

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Re: transform masks from Jerne database

From:

Mark Jenkinson <[log in to unmask]>

Reply-To:

FSL - FMRIB's Software Library <[log in to unmask]>

Date:

Wed, 10 Nov 2010 10:10:55 +0000

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (251 lines)

Hi,

Thanks for that.  It is much clearer now.
It also looks like the following steps will allow FSL
users to get correct NIFTI versions of your files,
in MNI space, including the left-right fix.

The steps are:
  fslmaths original_image nifti_image
  fslorient -forceneurological nifti_image
  flirt -in nifti_image -ref $FSLDIR/data/standard/MNI152_T1_2mm -applyxfm -usesqform -out image_in_mni

Also, my understanding of Analyze for SPM was
that there is a site-specific defaults file where the
site can choose to interpret Analyze in a left-right
or right-left way, and hence even this isn't standard!
However, for your files I believe that the above will
do the necessary conversion.

All the best,
	Mark



On 9 Nov 2010, at 13:24, Finn Aarup Nielsen wrote:

> Dear Mark,
> 
> 
> On Tue, 9 Nov 2010, Mark Jenkinson wrote:
> 
>> What is really helpful is to know that it is the 26th slice.
>> Also, when you write that "FSLview 3.1.2 the program
>> reports X=39, Y=56, Z=25 and (0mm,0mm,0mm)".  Is this
>> consistent with what you see with your toolbox and SPM?
>> If it is consistent then this lets me work out what to do.
> 
> This is consistent. It is the 26th slice.
> 
> 
>> Could I also ask you to put up one example somewhere (upload
>> it to our site or host it on a website somewhere) of an original
>> Analyze file (hdr/img - with the original size) and an equivalent
>> nifti file that is padded to 91x109x91, so that I can check that
>> we are in agreement.
> 
> I put up a few files:
> 
> http://www2.imm.dtu.dk/~fn/tmp/amygdala-mni-sym-res.hdr
> http://www2.imm.dtu.dk/~fn/tmp/amygdala-mni-sym-res.img
> 
> These are 91x109x91 equivalents of the 79x95x68 amygdala from the web site.
> 
> ---
> 
> http://www2.imm.dtu.dk/~fn/tmp/test.hdr
> http://www2.imm.dtu.dk/~fn/tmp/test.img
> 
> A 79x95x68-volume with a (0mm,0mm,0mm)-blob equivalent with (40, 57, 26) in one-indexed, and - as my FSLview reports - (39, 56, 25) in zero-indexed.
> 
> ---
> 
> http://www2.imm.dtu.dk/~fn/tmp/test2.hdr
> http://www2.imm.dtu.dk/~fn/tmp/test2.img
> 
> A 91x109x91-volume with a (0mm, 0mm, 0mm)-blob equivalent with (46, 64, 37) indexed from one.
> 
> ---
> 
> http://www2.imm.dtu.dk/~fn/tmp/test3.hdr
> http://www2.imm.dtu.dk/~fn/tmp/test3.img
> 
> A 91x109x91-volume with a (10mm, 20mm, 30mm)-blob equivalent with (51, 74, 52) one-indexed. FSLview also consistently report it to be (50, 73, 51) zero-indexed. FSLview furthermore reports the stereotaxic coordinate to be (-10mm, 20mm, 30mm). The +10mm/-10mm difference is due to that I write by default in the SPM99 variant of the Analyze format, while (afaik) FSL interpret in the original Analyze format.
> 
> ---
> 
> Unfortunately I cannot immediately construct nifti-files.
> 
> 
> all the best
> Finn
> 
> 
> 
> 
> 
>> On 9 Nov 2010, at 09:40, Finn Aarup Nielsen wrote:
>> 
>>> Dear Mark,
>>> 
>>> On Tue, 9 Nov 2010, Mark Jenkinson wrote:
>>> 
>>>> It would certainly be possible to do this processing outside of
>>>> matlab, but I'm not exactly sure what your matlab functions
>>>> do and am also not 100% sure of the interpretation of the
>>>> Analyze fields (which is why we changed to nifti).
>>> 
>>> Yes, nifti is certainly better in the aspect of stereotaxic volumes.
>>> Perhaps it would be an idea to convert the files on the web site to nifti and in 91x109x91. I was not aware of the problem. Sorry.
>>> 
>>>> I downloaded one file (amygdala.hdr/img) and when I run fslhd
>>>> I get the following fields:
>>>> origin1        40
>>>> origin2        57
>>>> origin3        26
>>>> which I assume are the ones you are referring to as
>>>> the "centre voxel".
>>> 
>>> Yes, this is the center voxel, indexed from one, and it means that the center of that center voxel (40, 57, 26) has stereotaxic coordinate (0mm,0mm,0mm).
>>> 
>>>> Now as they come from SPM-Analyze, I am unsure whether this
>>>> means that the nifti voxel coordinate (40,57,26) should be
>>>> treated as the centre voxel, or whether I need to subtract 1
>>>> from each value to account for SPM using MATLAB.  Do you
>>>> know whether the convention used here starts with a (0,0,0)
>>>> coordinate or a (1,1,1) coordinate?  That is, for origin3=26,
>>>> does this mean that the centre voxel is on the 26th slice
>>>> or the 27th?  With the nifti conventions - start at (0,0,0) - it
>>>> would be the 27th slice.
>>> 
>>> You shouldn't extract 1. The center voxel is on the 26th slice (indexed from one). The x-dimention should be symmetric around the center plane:
>>> 
>>> Vamygdala = brede_read_analyze('amygdala-mni-sym.img')
>>> Vamygdala.x([1 40 end])
>>> 
>>> ans =
>>> 
>>>  -0.0780         0    0.0780
>>> 
>>> Here the x-coordinate goes from -78mm to 78mm with the 40th slice (indexed from one) as the center voxel.
>>> 
>>> I am a bit puzzled about your remark about the nifti convention. Would that be for Method 1, 2 or 3?
>>> 
>>> Below I have a small Matlab script that sets a blob centered at (0mm, 0mm, 0mm) writes out a SPM99-Analyze file and reads it in with SPM. SPM reports the blob to be a (0mm, 0mm, 0mm). So it seems that at least my Brede Toolbox and SPM(99) is in agreement. When I read the file with Ubuntu FSLview 3.1.2 the program reports X=39, Y=56, Z=25 and (0mm,0mm,0mm). So that must mean that FSLview reports voxel indices indexed from zero. (There is still the infamous left/right issue)
>>> 
>>> 
>>> % Volume with blob at (0mm,0mm,0mm)
>>> V = brede_loc_loc2vol([0 0 0], 'template', 'spm99_default');
>>> 
>>> % Value in voxel at (0mm,0mm,0mm)
>>> L = brede_vol_vol2loc(V);
>>> maxWithBrede = L.value
>>> 
>>> % Write SPM99-Analyze
>>> brede_write_analyze(V, 'filename', 'test');
>>> 
>>> % Origin voxel
>>> brede_read_analyze('test', 'output', 'origin')
>>> 
>>> % Value at origin voxel
>>> V2 = brede_read_analyze('test');
>>> V2.volume(40,57,26)
>>> 
>>> % Read with SPM (not setting defaults.analyze.flip = 0)
>>> v = spm_vol('test.img');
>>> [Y,XYZ] = spm_read_vols(v);
>>> [maxWithSpm,i] = max(Y(:));
>>> 
>>> % Stereotaxic coordinate
>>> XYZ(:,i)
>>> 
>>> 
>>> all the best
>>> Finn
>>> 
>>> 
>>>> If you can let me know this information then I can work out
>>>> how to do the conversion easily with FSL tools.
>>>> 
>>>> All the best,
>>>> 	Mark
>>>> 
>>>> 
>>>> On 9 Nov 2010, at 00:07, Finn Aarup Nielsen wrote:
>>>> 
>>>>> Dear FSL'er,
>>>>> 
>>>>> 
>>>>> I am the one who made the volumes in http://neuro.imm.dtu.dk/services/jerne/ninf/voi.html
>>>>> 
>>>>> The volumes are constructed from the coordinates in the 'old' BrainMap database. These coordinates were (supposed to be) in the Talairach 1988 space. I converted them to MNI-space with Brett's transformation.
>>>>> 
>>>>> The volumes are using the SPM-Analyze format, so that the center voxel is indicated in the header file with the specific SPM-field. There might be the left/right ambiguity problem, but since the volumes are symmetric in the left/right dimension that shouldn't matter.
>>>>> 
>>>>> So what is needed is zeropadding to get you to the 91x109x91 template. If you have matlab installed you can download my Brede Toolbox from http://neuro.imm.dtu.dk/software/brede/ and run the following commands:
>>>>> 
>>>>> !wget http://neuro.imm.dtu.dk/services/jerne/ninf/voi/frontal_eye_fields-mni-sym.hdr
>>>>> !wget http://neuro.imm.dtu.dk/services/jerne/ninf/voi/frontal_eye_fields-mni-sym.img
>>>>> 
>>>>> V = brede_read_analyze('frontal_eye_fields-mni-sym');
>>>>> Vt = brede_loc_loc2vol([], 'template', 'spm99_template');
>>>>> Vr = brede_vol_resample(V, 'targetvolume', Vt);
>>>>> brede_write_analyze(Vr, 'filename', 'frontal_eye_fields-mni-sym-res')
>>>>> 
>>>>> That should get you a new resampled/zeropadded version with the dimension 91x109x91 --- in this case from the 'frontal eye fields' volume. When I view files written with my toolbox in Ubuntu FSLview 3.1.2 the x-sign is switched. However, as written before the volumes are symmetric so it shouldn't matter. I do not know if there is a non-matlab way to do this step.
>>>>> 
>>>>> 
>>>>> I hope this clarifies at least a bit.
>>>>> 
>>>>> all the best
>>>>> Finn
>>>>> 
>>>>> ___________________________________________________________________
>>>>> 
>>>>>       Finn Aarup Nielsen, DTU Informatics, Denmark
>>>>> Lundbeck Foundation Center for Integrated Molecular Brain Imaging
>>>>> http://www.imm.dtu.dk/~fn/      http://nru.dk/staff/fnielsen/
>>>>> ___________________________________________________________________
>>>>> 
>>>>> 
>>>>> 
>>>>>> From: Mark Jenkinson <[log in to unmask]>
>>>>>> 
>>>>>> Hi,
>>>>>> 
>>>>>> I have corresponded about this a long time ago with someone but I do
>>>>>> not believe that we ever found a general, satisfactory solution.
>>>>>> 
>>>>>> If you could find out somehow (from the people who post the data?)
>>>>>> how the voxel coordinates relate to MNI coordinates then we could work
>>>>>> out a way to convert them.  However, from my brief look at the website
>>>>>> it seems like these are in Analyze format and hence they do not contain
>>>>>> useful, unambiguous coordinate information like a NIfTI file would.  So
>>>>>> you definitely need to find out some more information first.  Or, as you say,
>>>>>> get your hands on a whole brain image in the same space.
>>>>>> 
>>>>>> All the best,
>>>>>> 	Mark
>>>>>> 
>>>>>> 
>>>>>> On 8 Nov 2010, at 17:37, H van Steenbergen wrote:
>>>>>> 
>>>>>>> Dear FSL-users,
>>>>>>> 
>>>>>>> I would like to use anatomical masks from the Jerne database. See http://neuro.imm.dtu.dk/services/jerne/ninf/voi.html
>>>>>>> 
>>>>>>> Although these images are in MNI 2x2x2 mm space, the dimensions are different (79x95x68) from the standard FSL MNI space (91x109x91) and cannot be overlaid in fslview. Unfortunately, the database does not provide a whole brain image which could have been used for registration to the FSL standard brain (the resulting transformation matrix could then be used for registration of other masks).
>>>>>>> 
>>>>>>> Any idea how to use flirt to transform the mask image to FSL MNI space? I found out that other people had the same problem in the past, but the solution has never been published on this mailing list.
>>>>>>> 
>>>>>>> Thanks in advance for your reply.
>>>>>>> 
>>>>>>> Henk van Steenbergen
>>>>>>> Leiden Institute for Brain and Cognition
>>>>>>> 
>>>>> 
>>>> 
>>> 
>> 
> 

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

April 2024
March 2024
February 2024
January 2024
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007
2006
2005
2004
2003
2002
2001


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager