We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In osl:
osl.source_recon.rhino.utils._get_vol_info_from_nii
mri_depth=dims[2]
osl.source_recon.rhino.forward_model.setup_volume_source_space
vol_info
mne.source_space._make_volume_source_space
Links:
In MNE:
mne.source_space.setup_volume_source_space
_make_volume_source_space
mne._freesurfer._get_mri_info_data
mri_depth=dims[1]
So the question is what should be used for the vol_info passed to mne.source_space._make_volume_source_space?
Note:
mri
mgh
mgz
mgh/mgz
An example of a nifti file where the volume dimensions do not have mri_depth=mri_height is any of the structurals in the Wakeman-Henson dataset.
mri_depth=mri_height
The text was updated successfully, but these errors were encountered:
woolrich
cgohil8
No branches or pull requests
In osl:
osl.source_recon.rhino.utils._get_vol_info_from_nii
.mri_depth=dims[2]
in this function.osl.source_recon.rhino.forward_model.setup_volume_source_space
.vol_info
is passed to the MNE functionmne.source_space._make_volume_source_space
here: https://github.com/OHBA-analysis/osl/blob/main/osl/source_recon/rhino/forward_model.py#L375.Links:
osl.source_recon.rhino.utils._get_vol_info_from_nii
: https://github.com/OHBA-analysis/osl/blob/main/osl/source_recon/rhino/utils.py#L154.osl.source_recon.rhino.forward_model.setup_volume_source_space
: https://github.com/OHBA-analysis/osl/blob/main/osl/source_recon/rhino/forward_model.py#L228.In MNE:
mne.source_space.setup_volume_source_space
.mne.source_space._make_volume_source_space
here: https://github.com/mne-tools/mne-python/blob/main/mne/source_space.py#L1746.vol_info
passed to_make_volume_source_space
is created here usingmne._freesurfer._get_mri_info_data
.mri_depth=dims[1]
.Links:
mne.source_space.setup_volume_source_space
: https://github.com/mne-tools/mne-python/blob/main/mne/source_space.py#L1504.mne._freesurfer._get_mri_info_data
: https://github.com/mne-tools/mne-python/blob/main/mne/_freesurfer.py#L125.So the question is what should be used for the
vol_info
passed tomne.source_space._make_volume_source_space
?Note:
mri
argument passed tomne._freesurfer._get_mri_info_data
, should be amgh
ormgz
file in their documentation: https://github.com/mne-tools/mne-python/blob/main/mne/source_space.py#L1528-L1535.mgh/mgz
file is created using freesurferAn example of a nifti file where the volume dimensions do not have
mri_depth=mri_height
is any of the structurals in the Wakeman-Henson dataset.The text was updated successfully, but these errors were encountered: