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
|
"""Module dedicated to manipulation of channels.
Can be used for setting of sensor locations used for processing and plotting.
"""
from .layout import (Layout, make_eeg_layout, make_grid_layout, read_layout,
find_layout, generate_2d_layout)
from .montage import (read_montage, read_dig_montage, Montage, DigMontage,
get_builtin_montages, make_dig_montage,
read_dig_egi, read_dig_captrack, read_dig_fif,
read_dig_polhemus_isotrak, read_polhemus_fastscan,
compute_dev_head_t, make_standard_montage,
read_custom_montage, read_dig_hpts
)
from .channels import (equalize_channels, rename_channels, fix_mag_coil_types,
read_ch_connectivity, _get_ch_type,
find_ch_connectivity, make_1020_channel_selections)
__all__ = [
# Data Structures
'DigMontage', 'Layout', 'Montage',
# Factory Methods
'make_dig_montage', 'make_eeg_layout', 'make_grid_layout',
'make_standard_montage',
# Readers
'read_ch_connectivity', 'read_dig_captrack', 'read_dig_egi',
'read_dig_fif', 'read_dig_montage', 'read_dig_polhemus_isotrak',
'read_layout', 'read_montage', 'read_polhemus_fastscan',
'read_custom_montage', 'read_dig_hpts',
# Helpers
'rename_channels', 'make_1020_channel_selections',
'_get_ch_type', 'equalize_channels', 'find_ch_connectivity', 'find_layout',
'fix_mag_coil_types', 'generate_2d_layout', 'get_builtin_montages',
# Other
'compute_dev_head_t',
]
|