-
Notifications
You must be signed in to change notification settings - Fork 23
Connectome for DTI
unidesigner edited this page Mar 29, 2011
·
4 revisions
You might need to extract the gradient tables of DTI dataset by hand, instead of the provided used by Diffusion Toolkit.
-
Install mricron which includes the dcm2nii tool.
cd project/subject/timepoint/RAWDATA/DTI
dcm2nii *.dcm
-
Use Ipython and Numpy to change the format of the gradient table to fit for DTK.
ipython
import numpy as np
a=np.load('.....bvec')
a=a.T # transpose
a = a[5:, :] # need to cut the vectors for b0 volumes (here 5 b0 volumes)
np.savetxt('customgradienttable.txt', a)
-
No, you can provide your custom gradient table in the "Reconstruction step" of Connectome Mapper