# Authors: The MNE-Python contributors. # License: BSD-3-Clause # Copyright the MNE-Python contributors. r""" .. _tut-importing-fnirs-data: ================================= Importing data from fNIRS devices ================================= fNIRS devices consist of two kinds of optodes: light sources (AKA "emitters" or "transmitters") and light detectors (AKA "receivers"). Channels are defined as source-detector pairs, and channel locations are defined as the midpoint between source and detector. MNE-Python provides functions for reading fNIRS data and optode locations from several file formats. Regardless of the device manufacturer or file format, MNE-Python's fNIRS functions will internally store the measurement data and its metadata in the same way (e.g., data values are always converted into SI units). Supported measurement types include amplitude, optical density, oxyhaemoglobin concentration, and deoxyhemoglobin concentration (for continuous wave fNIRS), and additionally AC amplitude and phase (for frequency domain fNIRS). .. warning:: MNE-Python stores metadata internally with a specific structure, and internal functions expect specific naming conventions. Manual modification of channel names and metadata is not recommended. .. _import-snirf: ***************** Standardized data ***************** SNIRF (.snirf) ============== The Shared Near Infrared Spectroscopy Format (`SNIRF `__) is designed by the fNIRS community in an effort to facilitate sharing and analysis of fNIRS data. And is the official format of the Society for functional near-infrared spectroscopy (SfNIRS). The manufacturers Gowerlabs, NIRx, Kernel, Artinis, and Cortivision export data in the SNIRF format, and these files can be imported in to MNE. SNIRF is the preferred format for reading data in to MNE-Python. Data stored in the SNIRF format can be read in using :func:`mne.io.read_raw_snirf`. .. note:: The SNIRF format has provisions for many different types of fNIRS recordings. MNE-Python currently only supports reading continuous wave or haemoglobin data stored in the .snirf format. Specifying the coordinate system -------------------------------- There are a variety of coordinate systems used to specify the location of sensors (see :ref:`tut-source-alignment` for details). Where possible the coordinate system will be determined automatically when reading a SNIRF file. However, sometimes this is not possible and you must manually specify the coordinate frame the optodes are in. This is done using the ``optode_frame`` argument when loading data. ======= ================== ================= Vendor Model ``optode_frame`` ======= ================== ================= NIRx ICBM-152 MNI mri Kernel ICBM 2009b mri ======= ================== ================= The coordinate system is automatically detected for Gowerlabs SNIRF files. *********************** Continuous Wave Devices *********************** .. _import-nirx: NIRx (directory or hdr) ======================= NIRx produce continuous wave fNIRS devices. NIRx recordings can be read in using :func:`mne.io.read_raw_nirx`. The NIRx device stores data directly to a directory with multiple file types, MNE-Python extracts the appropriate information from each file. MNE-Python only supports NIRx files recorded with NIRStar version 15.0 and above and Aurora version 2021 and above. MNE-Python supports reading data from NIRScout and NIRSport devices. .. _import-hitachi: Hitachi (.csv) ============== Hitachi produce continuous wave fNIRS devices. Hitachi fNIRS recordings can be read using :func:`mne.io.read_raw_hitachi`. No optode information is stored so you'll need to set the montage manually, see the Notes section of :func:`mne.io.read_raw_hitachi`. ************************ Frequency Domain Devices ************************ .. _import-boxy: BOXY (.txt) =========== BOXY recordings can be read in using :func:`mne.io.read_raw_boxy`. The BOXY software and ISS Imagent I and II devices are frequency domain systems that store data in a single ``.txt`` file containing what they call (with MNE-Python's name for that type of data in parens): - DC All light collected by the detector (``fnirs_cw_amplitude``) - AC High-frequency modulated light intensity (``fnirs_fd_ac_amplitude``) - Phase Phase of the modulated light (``fnirs_fd_phase``) DC data is stored as the type ``fnirs_cw_amplitude`` because it collects both the modulated and any unmodulated light, and hence is analogous to what is collected by continuous wave systems such as NIRx. This helps with conformance to SNIRF standard types. These raw data files can be saved by the acquisition devices as parsed or unparsed ``.txt`` files, which affects how the data in the file is organised. MNE-Python will read either file type and extract the raw DC, AC, and Phase data. If triggers are sent using the ``digaux`` port of the recording hardware, MNE-Python will also read the ``digaux`` data and create annotations for any triggers. ****************** Custom Data Import ****************** Loading legacy data in CSV or TSV format ======================================== .. warning:: This method is not supported and users are discouraged to use it. You should convert your data to the `SNIRF `_ format using the tools provided by the Society for functional Near-Infrared Spectroscopy, and then load it using :func:`mne.io.read_raw_snirf`. fNIRS measurements may be stored in a non-standardised format that is not supported by MNE-Python and cannot be converted easily into SNIRF. This legacy data is often in CSV or TSV format, we show here a way to load it even though it is not officially supported by MNE-Python due to the lack of standardisation of the file format (the naming and ordering of channels, the type and scaling of data, and specification of sensor positions varies between each vendor). You will likely have to adapt this depending on the system from which your CSV originated. """ # %% import numpy as np import pandas as pd import mne # sphinx_gallery_thumbnail_number = 2 # %% # First, we generate an example CSV file which will then be loaded in to # MNE-Python. This step would be skipped if you have actual data you wish to # load. We simulate 16 channels with 100 samples of data and save this to a # file called fnirs.csv. pd.DataFrame(np.random.normal(size=(16, 100))).to_csv("fnirs.csv") # %% # Next, we will load the example CSV file. data = pd.read_csv("fnirs.csv") # %% # Then, the metadata must be specified manually as the CSV file does not # contain information about channel names, types, sample rate etc. # # .. warning:: In MNE-Python the naming of channels MUST follow the structure # ``S#_D# type`` where # is replaced by the appropriate source and # detector numbers and type is either ``hbo``, ``hbr`` or the # wavelength. ch_names = [ "S1_D1 hbo", "S1_D1 hbr", "S2_D1 hbo", "S2_D1 hbr", "S3_D1 hbo", "S3_D1 hbr", "S4_D1 hbo", "S4_D1 hbr", "S5_D2 hbo", "S5_D2 hbr", "S6_D2 hbo", "S6_D2 hbr", "S7_D2 hbo", "S7_D2 hbr", "S8_D2 hbo", "S8_D2 hbr", ] ch_types = [ "hbo", "hbr", "hbo", "hbr", "hbo", "hbr", "hbo", "hbr", "hbo", "hbr", "hbo", "hbr", "hbo", "hbr", "hbo", "hbr", ] sfreq = 10.0 # in Hz # %% # Finally, the data can be converted in to an MNE-Python data structure. # The metadata above is used to create an :class:`mne.Info` data structure, # and this is combined with the data to create an MNE-Python # :class:`~mne.io.Raw` object. For more details on the info structure # see :ref:`tut-info-class`, and for additional details on how continuous data # is stored in MNE-Python see :ref:`tut-raw-class`. # For a more extensive description of how to create MNE-Python data structures # from raw array data see :ref:`tut-creating-data-structures`. info = mne.create_info(ch_names=ch_names, ch_types=ch_types, sfreq=sfreq) raw = mne.io.RawArray(data, info, verbose=True) # %% # Applying standard sensor locations to imported data # --------------------------------------------------- # # Having information about optode locations may assist in your analysis. # Beyond the general benefits this provides (e.g. creating regions of interest, # etc), this is may be particularly important for fNIRS as information about # the optode locations is required to convert the optical density data in to an # estimate of the haemoglobin concentrations. # MNE-Python provides methods to load standard sensor configurations # (montages) from some vendors, and this is demonstrated below. # Some handy tutorials for understanding sensor locations, coordinate systems, # and how to store and view this information in MNE-Python are: # :ref:`tut-sensor-locations`, :ref:`tut-source-alignment`, and # :ref:`ex-eeg-on-scalp`. # # Below is an example of how to load the optode positions for an Artinis # OctaMon device. # # .. note:: It is also possible to create a custom montage from a file for # fNIRS with :func:`mne.channels.read_custom_montage` by setting # ``coord_frame`` to ``'mri'``. montage = mne.channels.make_standard_montage("artinis-octamon") raw.set_montage(montage) # View the position of optodes in 2D to confirm the positions are correct. raw.plot_sensors() # %% # To validate the positions were loaded correctly it is also possible to view # the location of the sources (red), detectors (black), and channels (white # lines and orange dots) in a 3D representation. # The ficiduals are marked in blue, green and red. # See :ref:`tut-source-alignment` for more details. subjects_dir = mne.datasets.sample.data_path() / "subjects" mne.datasets.fetch_fsaverage(subjects_dir=subjects_dir) brain = mne.viz.Brain( "fsaverage", subjects_dir=subjects_dir, alpha=0.5, cortex="low_contrast" ) brain.add_head() brain.add_sensors(raw.info, trans="fsaverage") brain.show_view(azimuth=90, elevation=90, distance=500)