Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added myelin map to docs #179

Merged
merged 1 commit into from
Apr 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/tutorials/outputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ In this example, a `T1w` image was used as a standard reference image, but a `T2
   ├── sub-001_desc-preproc_T1w.nii.gz
   ├── sub-001_space-T1w_desc-preproc_T2w.nii.gz
   ├── sub-001_hemi-R_space-T1w_desc-subfields_dseg.nii.gz
   ├── sub-001_space-cropT1w_desc-preproc_T2w.nii.gz
   ├── sub-001_hemi-R_space-cropT1w_desc-preproc_T2w.nii.gz
   └── sub-001_hemi-R_space-cropT1w_desc-subfields_dseg.nii.gz

As per BIDS guidelines, `desc-preproc` refers to preprocessed input images, `space-T1w` refers to the volume to which the image is registered, `hemi` refers to the left or right hemisphere (only shown for the right in this example), and`desc-subfields_dseg` images contains subfield labels (coded as integers as described in the included `volumes.tsv` file). Note that HippUnfold does most intermediate processing in an unshown `space-corobl` which is cropped, upsampled, and rotated. Downsampling to the original `T1w` space can thus degrade the results and so they are also provided in a higher resolution `space-cropT1w` space which is ideal for conducting volumetry or morphometry measures with high precision and detail.

For example, the following Image shows a whole-brain `T1w` image, a
For example, the following image shows a whole-brain `T1w` image, a
`space-cropT1w` overlay of the upsampled T2w image (centre square), and a similarly upsampled output
subfield segmentation (colour).

Expand Down Expand Up @@ -118,6 +118,13 @@ Note that the dentate uses the same unfolding methods as the rest of the hippoca

Corresponding `coords` and `warp` files are also generated.

### New: myelin maps


If your dataset has T1w and T2w images (and you are using `--modality=T1w` or `--modality=T2w`), then you can enable the generation of myelin maps as the ratio of T1w over T2w images. This division is done in the `corobl` space, and provides `myelin.shape.gii` surface metrics, and also includes these in the CIFTI and spec files.

This option is enabled with the `--generate-myelin-maps` command-line option.

## coords

Hippunfold also provides images that represent anatomical gradients
Expand Down