mne.bem.distance_to_bem#
- mne.bem.distance_to_bem(pos, bem, trans=None, verbose=None)[source]#
Calculate the distance of positions to inner skull surface.
- Parameters:
- pos
array
, shape (…, 3) Position(s) in m, in head coordinates.
- beminstance of
ConductorModel
Conductor model.
- transpath-like |
dict
| instance ofTransform
|None
If str, the path to the head<->MRI transform
*-trans.fif
file produced during coregistration. Can also be'fsaverage'
to use the built-in fsaverage transformation. If trans is None, an identity matrix is assumed. If None (default), assumes bem is in head coordinates.Changed in version 0.19: Support for ‘fsaverage’ argument.
- verbose
bool
|str
|int
|None
Control verbosity of the logging output. If
None
, use the default verbosity level. See the logging documentation andmne.verbose()
for details. Should only be passed as a keyword argument.
- pos
- Returns:
Notes
New in version 1.1.