Tags: dataformat nirs artinis

Getting started with Artinis NIRS data

Artinis Medical Systems BV is a Dutch company located close to Nijmegen, which develops and produces systems for functional NIRS. Artinis has multiple hardware designs, which all work with the same Oxysoft acquisition and analysis software.

The data that is recorded with Oxysoft is organized in various files: all data recorded during a measurement is contained in binary .oxy3 or .oxy4 files. The information about the transmitter and receiver optodes is represented in optodetemplates.xml, which is usually located in C:\Program files\Artinis Medical Systems\Oxysoft\. Following data acquisition, some processing can be done using OxySoft, the results of this are stored in a project file, which again is an XML file.

The optodetemplates.xml file should be in the same directory as the oxy3 or oxy4 files.

The .oxy4 file format is currently only supported when you run MATLAB on a Windows computer.

The oxy3/oxy4 file contains the optical signals and data from the auxiliary accelerometer and ADC-channels. The file will also contain any triggers recorded during the measurement, which allow for synchronization with a stimulus presentation computer. In FieldTrip we can use ft_read_header and ft_read_data to read the content, but usually we prefer to use the higher level ft_preprocessing

The optode template specifies the configuration of the transmitting and receiving optodes, i.e. which optodes were combined in channels, and how the channels are to be visualized in the acquisition software. This file contains different groups of configurations, also called optode “templates” or “montages”. Each individual optode template has an unique ID, which is stored with the measurement in the binary file. It can be read using ft_prepare_layout and used for plotting. See also the layout and plotting tutorial.

The project file can contain data that was added after the measurement, e.g., events extracted from the trigger channel, or events that were manually added after the measurement. This makes the project file relevant in ft_definetrial and Artinis will upon request provide a custom trial function to parse this file and to use it for segmenting the continuous data in trials. Furthermore, the project file can contain spatial 3D MNI-coordinates of the optodes. Note that the project file can refer to multiple recordings, but also that one oxy3/oxy4 file can be included in multiple project files. This means that there is no guaranteed unique mapping between oxy3/oxy4 files and project files.

The use of datasets from an Artinis NIRS system is demonstrated in the single-channel and multi-channel NIRS tutorials.