You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: episodes/imaging-data-structure-and-formats.Rmd
+47-37Lines changed: 47 additions & 37 deletions
Original file line number
Diff line number
Diff line change
@@ -370,13 +370,13 @@ This can result in complicated data that can be arranged in many different ways.
370
370
Despite the structure of a neuroimaging study is fairly standard, so far there
371
371
is no consensus on how to organize and share data obtained in neuroimaging
372
372
experiments. The
373
-
[Brain Imaging Data Structure (BIDS)](https://bids.neuroimaging.io/get_started.html)
373
+
[Brain Imaging Data Structure (BIDS)](https://bids.neuroimaging.io/index.html)
374
374
is a framework for organizing data in a standardized way.
375
375
376
376
The main specifications regard how to structure data/metadata within a
377
377
hierarchy of folders and how to name files. The data you will use in this
378
378
workshop will mostly be organized according to this standard. If you are
379
-
interested, you can find the details of these specifications in the [BIDS starter kit](https://bids-standard.github.io/bids-starter-kit/index.html).
379
+
interested, you can find the details of these specifications in the [BIDS starter kit](https://bids.neuroimaging.io/getting_started/index.html).
380
380
381
381
## Visualizing neuroimaging data - FSLeyes
382
382
FSLeyes (pronounced **fossilize**) is the FSL image viewer for 3D and 4D data.
@@ -390,7 +390,7 @@ be likely to use throughout the workshop, while other more specific features
390
390
will be introduced at a later point. If you are already familiar with FSLeyes,
391
391
feel free to skip this part and move on to another section of the workshop.
392
392
393
-
For a full overview of what FSLeyes can do, take a look at the [FSLeyes user guide](https://open.win.ox.ac.uk/pages/fsl/fsleyes/fsleyes/userdoc/index.html).
393
+
For a full overview of what FSLeyes can do, take a look at the [FSLeyes user guide](https://open.oxcin.ox.ac.uk/pages/fsl/fsleyes/fsleyes/userdoc/index.html).
394
394
395
395
### Getting started
396
396
Assuming you are still in the `~/data/ImageDataVisualization` directory,
@@ -576,6 +576,7 @@ Now load in a second image (`sub-OAS30015_T1w_brain_pve_0.nii.gz`) using
576
576
_File > Add from file_. This image is a tissue segmentation image of the
577
577
cerebrospinal fluid. In the bottom-left panel is a list of loaded images
Quit FSLeyes when you have finished looking at the atlases.
717
719
720
+
## Next steps
721
+
In the [next episode on structural MRI](structural-mri.Rmd), we will learn how
722
+
to align (register) the two images together to be able to look at the same
723
+
point in the brain in both images.
724
+
725
+
## Stretch exercises
726
+
If you have completed all of the above and want to keep working more on imaging structure and format, please try the [bonus exercises below](#bonus-exercises).
727
+
728
+
## Additional material
729
+
For a more extensive tutorial on FSLeyes features, please refer to the
- Medical image data is typically stored in DICOM or Nifti format. They include
744
+
a header that contains information on the patient and/or the image characteristics.
745
+
- An affine transformation maps the voxel location to real-world coordinates.
746
+
- Medical image viewers allow to navigate an image, adjust contrast, and
747
+
localise brain regions with respect to an atlas.
748
+
749
+
::::::::::::::::::::::::::::::::::::::::::::::::
750
+
751
+
## Bonus exercises
752
+
If you have completed all of the above and want to keep working on this topic, please try the exercises below.
753
+
718
754
### BONUS EXERCISE: Viewing different imaging modalities
719
755
So far we have seen examples of MRI T1-weighted scans (T1w). In research as
720
756
well as in clinical setting, we acquire multiple imaging modalities from the
@@ -731,10 +767,10 @@ Let's take two imaging modalities from a different participant:
731
767
`sub-OAS30003_T1w.nii.gz` and `sub-OAS30003_FLAIR.nii.gz`
732
768
733
769
::::::::::::::::::::::challenge
734
-
*Do they have the same dimension?*
770
+
*Do they have the same **dimension**?*
735
771
736
772
:::::::::::::::::::::: hint
737
-
Use `fslhd` to get information on dimension and voxel size.
773
+
Use `fslhd` to get information on dimension.
738
774
::::::::::::::::::::::::::
739
775
740
776
:::::::::::::::::::::::: solution
@@ -747,18 +783,18 @@ image are 256 x 256 x 35.
747
783
::::::::::::::::::::::::
748
784
749
785
::::::::::::::::::::::challenge
750
-
*Do they have the same resolution?*
786
+
*Do they have the same **resolution**?*
751
787
752
788
:::::::::::::::::::::: hint
753
-
Use `fslhd` to get information on dimension and voxel size.
789
+
Use `fslhd` to get information on voxel size.
754
790
::::::::::::::::::::::::::
755
791
756
792
:::::::::::::::::::::::: solution
757
793
**No**
758
794
759
795
From the same `fslhd` commands, the resolution can be found in
760
796
the fields `pixdim1`, `pixdim2`, and `pixdim3`. For the T1 the resolution is
761
-
1.20 x 1.05 x 1.05 mm. For the FLAIR it is 0.859 x 0.859 x 5.00mm
797
+
1.20 x 1.05 x 1.05 mm. For the FLAIR it is 0.859 x 0.859 x 5.00 mm
762
798
::::::::::::::::::::::::
763
799
::::::::::::::::::::::::
764
800
@@ -776,7 +812,7 @@ or by double clicking on the image name in
776
812
the overlay list.
777
813
778
814
::::::::::::::::::::::challenge
779
-
*Do they have the same orientation?*
815
+
*Do they have the same **orientation**?*
780
816
781
817
:::::::::::::::::::::: hint
782
818
Look at the location panel to help with information about orientation
@@ -787,6 +823,7 @@ Look at the location panel to help with information about orientation
787
823
788
824
In the bottom right panel you should see the warning:
789
825
“Images have different orientations/fields of view”
826
+
Even if the images were acquired from the same person in the same session, the position of the field of view is slightly different, so the images are not perfectly aligned. FSLeyes tries to align them as best as it can, but image registration is the analysis step that is usually needed if we want to align images.
790
827
791
828
::::::::::::::::::::::::
792
829
::::::::::::::::::::::::
@@ -1104,31 +1141,4 @@ compliance with the BIDS standard:
1104
1141
::::::::::::::::::::::
1105
1142
::::::::::::::::::::::
1106
1143
1107
-
## Next steps
1108
-
In the [next episode on structural MRI](structural-mri.Rmd), we will learn how
1109
-
to align (register) the two images together to be able to look at the same
1110
-
point in the brain in both images.
1111
-
1112
-
## Additional material
1113
-
For a more extensive tutorial on FSLeyes features, please refer to the
Copy file name to clipboardExpand all lines: index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,11 +50,11 @@ webinars ahead of time**. The links to the webinars and the slides are below.
50
50
51
51
| Webinar Title | Slides |
52
52
| --- | --- |
53
-
|[Data Structure and Formats](https://training.alz.org/products/4520/neuroimaging-pia-basics-of-neuroimaging-data-structure-and-formats)|[Slides](files/1_BasicsNeuroimaging_StructureFormat-Griffanti.pdf)|
54
-
|[The Basics of Neuroimaging: Structural Magnetic Resonance Imaging (MRI)](https://training.alz.org/products/4524/neuroimaging-pia-the-basics-of-neuroimaging-structural-magnetic-resonance-imaging-mri)|[Slides](files/2_BasicsNeuroimaging_StructuralMRI-Cash.pdf)|
|[Functional Magnetic Resonance Imaging (fMRI)](https://training.alz.org/products/4528/neuroimaging-pia-the-basics-of-neuroimaging-functional-magnetic-resonance-imaging-fmri)|[Slides](files/5_BasicsNeuroimaging_Functional_Luigi.pdf)|
53
+
|[Data Structure and Formats](https://istaart.alz.org/video/70)|[Slides](files/1_BasicsNeuroimaging_StructureFormat-Griffanti.pdf)|
54
+
|[The Basics of Neuroimaging: Structural Magnetic Resonance Imaging (MRI)](https://istaart.alz.org/video/67)|[Slides](files/2_BasicsNeuroimaging_StructuralMRI-Cash.pdf)|
|[Functional Magnetic Resonance Imaging (fMRI)](https://istaart.alz.org/video/61)|[Slides](files/5_BasicsNeuroimaging_Functional_Luigi.pdf)|
58
58
59
59
At the workshop, we will all be using a standard environment, using a virtual machine (VM) hosted on the cloud. This ensures that everyone will be seeing the exact same screen for these lessons, regardless of if you are using a Mac or Windows operating system. You can find out more how to access this virtual machine below.
0 commit comments