1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
"""Module dedicated to manipulation of channels.
Can be used for setting of sensor locations used for processing and plotting.
"""
from ..defaults import HEAD_SIZE_DEFAULT
from .layout import (Layout, make_eeg_layout, make_grid_layout, read_layout,
find_layout, generate_2d_layout)
from .montage import (DigMontage,
get_builtin_montages, make_dig_montage, read_dig_dat,
read_dig_egi, read_dig_captrak, read_dig_fif,
read_dig_polhemus_isotrak, read_polhemus_fastscan,
compute_dev_head_t, make_standard_montage,
read_custom_montage, read_dig_hpts, read_dig_localite,
compute_native_head_t)
from .channels import (equalize_channels, rename_channels, fix_mag_coil_types,
read_ch_adjacency, _get_ch_type, find_ch_adjacency,
make_1020_channel_selections, combine_channels,
read_vectorview_selection, _SELECTIONS, _EEG_SELECTIONS,
_divide_to_regions, get_builtin_ch_adjacencies)
__all__ = [
# Data Structures
'DigMontage', 'Layout',
# Factory Methods
'make_dig_montage', 'make_eeg_layout', 'make_grid_layout',
'make_standard_montage',
# Readers
'read_ch_adjacency', 'read_dig_captrak', 'read_dig_dat',
'read_dig_egi', 'read_dig_fif', 'read_dig_localite',
'read_dig_polhemus_isotrak', 'read_layout',
'read_polhemus_fastscan', 'read_custom_montage', 'read_dig_hpts',
# Helpers
'rename_channels', 'make_1020_channel_selections',
'_get_ch_type', 'equalize_channels', 'find_ch_adjacency', 'find_layout',
'fix_mag_coil_types', 'generate_2d_layout', 'get_builtin_montages',
'combine_channels', 'read_vectorview_selection',
# Other
'compute_dev_head_t', 'compute_native_head_t',
]
|