Dataset for Tractography

Hi everyone,

I am a beginner in the field of neuroimaging. For the past few weeks I have read various research papers related to Tractography. I am looking to implement some algorithms. For that I have been trying to collect some datasets but I am getting confused of what is actually needed to implement and validate the tractography algorithms. In some datasets I get only .nii files and whereas in some i get .trk files, .fib files and various masks. Does anyone have any dataset arranged in a structured manner with implementation as it will be very useful in getting me started for implementation.

Regards,

Ashwin

Hi. I also want to add that I have one file with extension .nrrd files.

I would suggest processing provided datasets with available tutorials. These will help you understand the processing pipelines:

FATCAT
FSL
FSL
dsi-studio
Slicer
mrtrix

With regards to file extensions:

  1. Raw data from a scanner is typically in DICOM format (though proprietary Philips PAR/REC files are sometimes seen). While some DICOM files have the extension .dcm, many have no file extension. Since each vendor describes diffusion data differently, DICOM is not one format but many. One typically converts these images to NRRD format (.nrrd or .nhdr, if you use Slicer) or NIfTI (.nii, other tools).

  2. Initial processing typically removes artifacts and noise (e.g. degibbs, dwidenoise) and spatially undistorted images (e.g. TOPUP/Eddy). Then the DWI images are fitted as tensors (e.g. either as a 3x3 matrix or V1, V2, V3), or more sophisticated models of ODF. The fitting also provides scalar values like TRACE, MD, MK, etc. These Voxelwise values are typically saved in NIfTI format. Some tools store these in custom formats (e.g. DSIstudio .fib).

  3. Optionally, voxels can be connected together using streamlines. Popular formats include TCK, TRK, BFloat, DAT, and VTK (confusingly also saved as .fib).

1 Like

Hi @Chris_Rorden. Thanks for the response. I have some queries. I have been reading about the fiber reconstructions like representing DWI using tensors (DTI), q ball, CSD, etc., In one paper titled Deep Tract (By Itay Benou) I saw that an RNN model has been used instead of these above models to form a fODF.
image

In the above snippet it provides what is required to implement the algorithm. I have downloaded some datasets like ISMRM 2015 challenge, Fiber Fox. But in these datasets I have the .nii files, and the ground truth of the 25 fiber bundles.

As per the Github repository for the above paper the data format is

Here in the above data format I am not sure about where to take this labels, mask and wm_mask.

You might want to check out the examples at dipy.org. Several of the examples automatically downloaded data and process it from the raw data all the way to tractographies. For example : https://dipy.org/documentation/1.2.0./examples_built/tracking_introduction_eudx/#example-tracking-introduction-eudx

Hi @Ariel_Rokem thanks for the link.

Hi @RS_A ,

Can you mark this thread as solved ? It helps sort the different issues.

Thank you in advance
Arnaud

Hi @abore. How to do that? I am not sure about the process.

Regards,

Ashwin

You should see a button “Solution” on each reply that has been done. You can click on the one under Ariel answer.

Thanks @abore for helping out.

Regards,

Ashwin