Source code for osl_dynamics.files.mask
"""Mask files.
- MNI152_T1_1mm_brain.nii.gz
- MNI152_T1_2mm_brain.nii.gz
- MNI152_T1_8mm_brain.nii.gz
- ft_8mm_brain_mask.nii.gz
Mask files can be resampled in FSL, e.g. to resample the 1x1x1 mm grid MNI mask file to a 5x5x5 mm grid:
.. code::
flirt -in $FSLDIR/data/standard/MNI152_T1_1mm_brain.nii.gz -ref $FSLDIR/data/standard/MNI152_T1_1mm_brain.nii.gz -out MNI152_T1_5mm_brain.nii.gz -applyisoxfm 5
When plotting brain maps the resolution of the mask file must match the resolution of the parcellation file. Parcellation files can also be resampled using the code above.
"""
from pathlib import Path
import nibabel as nib
import numpy as np
[docs]
surf_right = str(
Path(__file__).parent / "ParcellationPilot.R.midthickness.32k_fs_LR.surf.gii"
)
[docs]
surf_left = str(
Path(__file__).parent / "ParcellationPilot.L.midthickness.32k_fs_LR.surf.gii"
)
[docs]
surf_right_inf = str(
Path(__file__).parent / "ParcellationPilot.R.inflated.32k_fs_LR.surf.gii"
)
[docs]
surf_left_inf = str(
Path(__file__).parent / "ParcellationPilot.L.inflated.32k_fs_LR.surf.gii"
)
[docs]
surf_right_vinf = str(
Path(__file__).parent / "ParcellationPilot.R.very_inflated.32k_fs_LR.surf.gii"
)
[docs]
surf_left_vinf = str(
Path(__file__).parent / "ParcellationPilot.L.very_inflated.32k_fs_LR.surf.gii"
)
[docs]
path = Path(__file__).parent
[docs]
def get_surf(inflation: int):
surfs = {
0: [surf_left, surf_right],
1: [surf_left_inf, surf_right_inf],
2: [surf_left_vinf, surf_right_vinf],
}
if inflation not in surfs.keys():
raise ValueError(f"inflation must be in {list(surfs.keys())}")
return combine_surfs(*surfs[inflation])
[docs]
def combine_surfs(left_file, right_file):
surf_left = nib.load(left_file)
surf_right = nib.load(right_file)
points_left = surf_left.agg_data("pointset")
points_right = surf_right.agg_data("pointset")
triangles_left = surf_left.agg_data("triangle")
triangles_right = surf_right.agg_data("triangle")
points = np.concatenate([points_left, points_right])
triangles = np.concatenate([triangles_left, triangles_right + len(points_left)])
return points, triangles