CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
__init__.py23 linesDownload Raw Back to nirs
1"""NIRS specific preprocessing functions."""2 3# Authors: The MNE-Python contributors.4# License: BSD-3-Clause5# Copyright the MNE-Python contributors.6 7from .nirs import (8    short_channels,9    source_detector_distances,10    _check_channels_ordered,11    _channel_frequencies,12    _fnirs_spread_bads,13    _channel_chromophore,14    _validate_nirs_info,15    _fnirs_optode_names,16    _optode_position,17    _reorder_nirx,18)19from ._optical_density import optical_density20from ._beer_lambert_law import beer_lambert_law21from ._scalp_coupling_index import scalp_coupling_index22from ._tddr import temporal_derivative_distribution_repair, tddr23 
Aluode/PerceptionLabPortable · CoolFace