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  May 2007

FSL May 2007

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Re: DICOM (DIR?) to NIFTI

From:

Alle Meije Wink <[log in to unmask]>

Reply-To:

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

Date:

Fri, 18 May 2007 17:02:02 +0100

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (276 lines)

>> I have now got a script that does what you suggested (ie use medcon to 
>> make a 3D data set then run MriCRoN's dcm2nii to make nifti) and that 
>> does the trick!
> 
> I've been playing with dcm2nii a bit, and it should be able to do the 
> sorting itself, including correctly making separate NIfTIs from 
> directories that contain unsorted slices from different volumes. This 
> should be more reliable than my suggestion of stacking with medcon, 
> since it's possible to mis-order the files when stacking.
> 
> If dcm2nii fails for your particular data, I'd suggest contacting Chris 
> Rorden, to see if the problem can be fixed.

Well, find attached my latest script, i.e.

DICOM slices -> DICOM 3D
DICOM 3D -> NifTI 3D

Which leaves all the matrices in, shows the coronal scan as a coronal 
scan, and shows the head upright instead of upside down :)

>> Chris Rorden has a very nice page that explains of dcm2nii is 
>> swap-aware (between DICOM and NifTI/Analyze, it's apparently like 
>> reading Arabic vs. reading English!).
> 
> I had a quick look, and couldn't find that, could you post the URL, please?

Hmm, I don't seem to be able to find it either now. It was a pipcture of 
a matrix with 1,2,3 ; a,b,c in it (or something like that) and it showed 
how that would look in a radiological, neurological, and Dicom image, 
respectively.

Maybe someone knows where that page is?

> but I believe it's quite possible under the standard to specify "scanner 
> anatomical" intent for the sform and MNI for the qform. The latter might 
> be a bad idea, since the qform can only represent a 9 DF transformation 
> (with no shearing of axes) whereas the sform can represent a full 12 DF 
> affine transformation. But the former -- having scanner-anatomical 
> coords in the sform -- seems fine.

Ah. I thought that Q-form and S-form had different roles. I usually try 
to leave the Q-form alone, and doing all the standard space work in the 
S-form.

> [I don't actually know why the more limited qform is present, instead of 
> offering two sform-type transformations; I'd guess there might have been 
> some motivation to use quaternions to represent rotation, but I can't 
> see why an optional skewing couldn't have followed that, but anyway...]

The only explanation I can offer is that the Q-form represents the 
orientation in the scanner...

>> Another reason for being afraid of SPM is that apparently Templaye == 
>> MNI, so I'm not sure what happens if I use a coronal template, or one 
>> that's x-flipped wrt the MNI template? Does either SPM or FSL allow 
>> for these `deviations from normality'?
> 
> The benefit of having a voxel-world mapping and then working in voxel 
> coordinates is that this kind of thing shouldn't matter any more. You 
> can, for example, use SPM5 to reorient your image to be aligned to MNI 
> world-space, without resampling the voxel data. It doesn't matter 
> whether the two fastest-changing voxel dimensions give an axial or 
> coronal plane, as long as the voxel-world mapping in the Q/S-form gives 
> (x,y,z) mm coordinates that are aligned with MNI.

Ah, and it is possible to do your analysis in these `world' coordinates 
without resampling to standard space?

If so, I wonder what format the computed maps will have...

> At the moment, FSL doesn't really fully support NIfTI world-coordinates. 
> FSLview uses them to label its axes (which is extremely helpful BTW!) 
> but tools like FLIRT don't currently take account of them, so you might 
> need to use e.g. avwswapdim to roughly align your data with your desired 
> template.

That's what I thought happened everywhere (ie for viewing, the 
coordinate transforms are used, but when the analysis starts, everything 
needs to be resampled in the same space.

>>> Note these are both right-handed coordinate systems, but I think the 
>>> determinant of the Q/S-form can be positive or negative negative 
>>> depending on the handedness of the voxel storage convention in NIfTI. 
>>> While it sounds to me that DICOM should always have a right-handed 
>>> voxel storage order
>>>   http://nifti.nimh.nih.gov/board/read.php?f=1&i=532&t=508
>>> where I understand from the FAQ that the fastest changing voxel index 
>>> is along the rows (i.e. column index i), followed by down columns 
>>> (row index j), and then slice (k) is slowest changing. I.e. 
>>> Voxels[k][j][i] in C++ notation
>>>   http://www.vtk.org/Wiki/Proposals:Orientation
>>>   http://grahamwideman.com/gw/brain/orientation/orientterms.htm
>>
>> ... you seem to have stopped here mid-sentence?
> 
> No, just forgot the full-stop after notation. So far, no-one has replied 
> to me (hopefully anyone who does will go via (or CC) the list) about 
> this, so I'm still a little confused. But maybe the stuff you found on 
> Chris Rorden's webpage might clear this up for me...

I still don't understand the sentence... But I hope I'll find that page 
again...

>> I wonder how FSL and SPM compare in that respect? What would happen if 
>> I combine an acquisition with axial slices, and an acquisition with 
>> coronal slices, in the same study?
> 
> I think this would probably be a bad idea, due to things like MR 
> gradient non-uniformities and differences in motion/pulse artefact, etc. 
> But I'm only guessing here -- MR Physicists, feel free to shout at me!

Well, I was more thinking of re-ordering an axial image as a coronal 
image, changing the orientation matrix appropriately and then see if any 
of the analysis programs survives...

Have a good weekend
AM

######################################################################################

#!/bin/bash
# this is a BASH script

CD=$PWD

DCM2NII="/home/amw71/usr/local/mricron/dcm2nii -a N -d N -e N -g N -p N 
-i N"

ONEIMDIR=$CD/DirForOneImage
mkdir -p $ONEIMDIR

# remove all header/image/nifti files
rm -f `find $CD -name \*.\[hni\]\?\?`

# relink -make sure that all numbers have the same #digits
# i.e., 1 -> 001, 10 -> 010, etc, for ordering of slices
# (this only needs to be done once)
RELINK="YES"

if [[ "$RELINK" == "YES" ]]; then

     # first, find all the image directories
     # basically, look for "IM1". The IM2 etc will be at similar places
     IMDIRS=""
     imdirs=0;
     for d in `find $CD -name IM1 -type f`; do
         # add directory name minus the last "/<string>"
	IMDIRS="$IMDIRS ${d%/*}";
	let imdirs=$imdirs+1;
     done
     echo "$imdirs image directories found before renaming"

     echo "Renaming 1-digit directories:"
     # make links from IM1 to IM01, etc
     for d in `find $CD -name IM\?`; do
	mv -i $d ${d//IM/IM0};
	printf "."
     done
     printf "\n"

     echo "Renaming 2-digit directories:"
     # make links from IM10 to IM010, etc
     for d in `find $CD -name IM\?\?`; do
	mv -i $d ${d//IM/IM0};
	printf "."
     done
     printf "\n"

fi

# first, find all the image directories
# basically, look for "IM1". The IM2 etc will be at similar places
IMDIRS="";
imdirs=0;
for d in `find $CD -name IM001`; do
     # add directory name minus the last "/<string>"
     IMDIRS="$IMDIRS ${d%/*}";
     let imdirs=$imdirs+1;
done
echo "$imdirs image directories found (after renaming)"

# then, cycle over all directories with slices
# (keeping track with counter imdir)
imdir=0;
for IMDIR in $IMDIRS; do

     let imdir=$imdir+1;

     # reset all slice counters
     echo "gathering data for subject $IMDIR ($imdir of $imdirs)"
     IMAGES="";
     PDIMAGES="";
     T2IMAGES="";
     i=0;

     # add slice images to main volume, PD volume and T2 volume
     for f in `find $IMDIR -name IM\?\?\? | sort -g`; do

	IMAGES="$IMAGES $f";

	if (( $i % 2 == 0 )); then
	    PDIMAGES="$PDIMAGES $f";
	else
	    T2IMAGES="$T2IMAGES $f";
	fi
	let i=($i+1)%2;

     done
     images=`echo $IMAGES|wc -w`;

     # building the medcon command to make a dicom volume
     echo "adding $images slice images in $IMDIR into a NifTI volume"
     COMMAND="$HOME/usr/local/bin/medcon"  # program call
     COMMAND="$COMMAND -n"                 # do not discard negative values
     COMMAND="$COMMAND -b16"               # generate 16-bit output
     COMMAND="$COMMAND -c dicom"           # output format: dicom
     COMMAND="$COMMAND -cor"               # coronal slices
     COMMAND="$COMMAND -stack3d"           # combine slices
     COMMAND="$COMMAND -w "                # overwrite data
     COMMAND="$COMMAND -alias "            # use string with patient ID
     COMMAND="$COMMAND -noprefix"          # don't use other strings
     #COMMAND="$COMMAND -o $CD/image3D.dcm" # output filename
     COMMAND="$COMMAND -f $IMAGES"         # list of input images

     # empty directory of (unknown) .dcm files
     rm -rf $CD/*.dcm

     # dual-echo (PD + T2) image
     echo "combining all slices into one volume"
     $COMMAND;

     # obtain ID
     NAME=`ls *.dcm`;
     NAME=${NAME##*+????????+}
     NAME=${NAME%%+*}

     if (( $images > 100 )); then
	NEWNAME=$ONEIMDIR/${NAME}dualecho.dcm;
     else
	NEWNAME=$ONEIMDIR/${NAME}anatomy.dcm;
     fi

     mv $CD/*.dcm $NEWNAME
     $DCM2NII $NEWNAME
     mv $ONEIMDIR/* $IMDIR

     # do this only for dual-echo images
     if (( $images > 100 )); then
	
         # PD image
	echo "making separate proton-density weighted image"
	PDCOMMAND=${COMMAND%%-f*};
	PDCOMMAND="$PDCOMMAND -f $PDIMAGES"
	$PDCOMMAND;
	NEWNAME=$ONEIMDIR/${NAME}pd.dcm;
	mv $CD/*.dcm $NEWNAME
	$DCM2NII $NEWNAME
	mv $ONEIMDIR/* $IMDIR

         # T2 image
	echo "making separete T2-weighted image"
	T2COMMAND=${COMMAND%%-f*};
	T2COMMAND="$T2COMMAND -f $T2IMAGES"
	$T2COMMAND;
	NEWNAME=$ONEIMDIR/${NAME}t2.dcm;
	mv $CD/*.dcm $NEWNAME
	$DCM2NII $NEWNAME
	mv $ONEIMDIR/* $IMDIR

     fi

done

######################################################################################

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