mne.read_morph_map¶
-
mne.read_morph_map(subject_from, subject_to, subjects_dir=None, xhemi=False, verbose=None)[source]¶ Read morph map.
Morph maps can be generated with mne_make_morph_maps. If one isn’t available, it will be generated automatically and saved to the
subjects_dir/morph_mapsdirectory.- Parameters
- subject_from
str Name of the original subject as named in the SUBJECTS_DIR.
- subject_to
str Name of the subject on which to morph as named in the SUBJECTS_DIR.
- subjects_dir
str Path to SUBJECTS_DIR is not set in the environment.
- xhemibool
Morph across hemisphere. Currently only implemented for
subject_to == subject_from. See notes ofmne.compute_source_morph().- verbosebool,
str,int, orNone If not None, override default verbose level (see
mne.verbose()and Logging documentation for more). If used, it should be passed as a keyword-argument only.
- subject_from
- Returns
- left_map, right_map
csr_matrix The morph maps for the 2 hemispheres.
- left_map, right_map