User Reference:Filters
Filters are the most important building blocks of a BCI2000 system. This document describes the filter concept for users who will configure BCI2000 for their own experiments, and provides links to the documentation pages of individual filters, describing each filter's purpose and parameterization.
Data Processing as a Pipe
Each of the three BCI2000 core modules contains a chain of filters, i.e. a sequence of filters forming a pipe where, basically, brain signal data enter on one side, and a processed version of these data leaves on the other side.
The notion of a pipe implies that, for each portion of data entering on the input side, there will be exactly one portion of output data on the output side. This is analogous to a water pipe: unlike a water stream (a brook, or a river), it is impossible to insert or remove water from inside the pipe without breaking it. Similarly, albeit signal portions may change their shape on their way through the pipe (filter chain), it is impossible to insert or remove any of them. Thus, each data portion acquired by the data acquisition module will run through the entire BCI2000 system, being processed by a sequence of filters.
Configuration Overview
In principle, these filters may be placed in any order by the writer (programmer) of a BCI2000 module, and it is technically easy to change the number, and order, of filters. However, not all combinations or orderings of filters make sense.
The table shows modules and filters for BCI2000 configurations included in the core distribution:
| Data Acquisition | Signal Processing | Application | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
AlignmentFilter | TransmissionFilter | SpatialFilter | ARFilter or FFTFilter | LinearClassifier | LowPassFilter | Normalizer | ConnectorInput | CursorTask | ConnectorOutput | ||||
| P3TemporalFilter | P3AVTask or P3SpellerTask | |||||||||||||
Data Acquisition Module
In the data acquisition (source) module, the DataIOFilter manages data acquisition and storage in a general manner. Actual acquisition of data is provided by ADC filters, actual writing into data files is done by FileWriter filters representing various Data Formats. In addition to managing the operation of ADC and FileWriter filters, the DataIOFilter handles signal calibration into physical units (typically, ), and visualization of the source signal.
Filter documentation for source modules is available for
General Filters
- User Reference:DataIOFilter: Storage and acquisition management, calibration.
- User Reference:AlignmentFilter: Temporal alignment.
- User Reference:TransmissionFilter: Subset selection for online processing.
ADC Filters
- User Reference:RandomNumberADC: A random signal generator for testing purposes.
- User Reference:gUSBampADC: Interface to the g.tec gUSBamp amplifier.
- User Reference:gMOBIlabADC: Interface to the g.tec gMOBIlab amplifier.
- User Reference:DAS_ADC: Interface to MeasurementComputing AD cards.
- User Reference:DTADC: Interface to Data Translation boards.
- User Reference:NIADC: Interface to National Instruments boards.
- User Reference:NeuroscanADC: Neuroscan Acquire socket protocol client.
- User Reference:RDAClientADC: Brain Vision RDA socket protocol client.
- Contributions:ADCs: Contributed code interfacing to other hardware.
FileWriter Filters
- User Reference:BCI2000FileWriter: BCI2000 data format.
- User Reference:EDFFileWriter: European Data Format.
- User Reference:GDFFileWriter: General Data Format for Biosignals.
- User Reference:NullFileWriter: Suppressing file output.
- Contributions:FileWriters: Contributed code supporting other output formats.
Signal Processing Module
In the signal processing module, brain signals are filtered spatially and temporally, resulting in a set of extracted features. In the Classifier, these features are used to differentiate amongst a small number of mental states (classes). Finally, the Normalizer adjusts the Classifier's output to zero mean and unit variance.
Filter documentation for signal processing filters is available for
General Filters
- User Reference:SpatialFilter: Instantaneous (i.e., sample-wise) linear transformation of brain signal input.
- User Reference:LinearClassifier: Linear projection of signal features onto low-dimensional classification space (control signal).
- User Reference:Normalizer: Adjustment of control signal to zero mean/unit variance.
- User Reference:LowPassFilter: Temporal low-pass filtering at any stage of processing.
Specific Filters
- User Reference:ARFilter: Auto-regression based spectral amplitude estimator.
- User Reference:FFTFilter: Short-term FFT for display or feature extraction purposes.
- User Reference:P3TemporalFilter: Segmenting and averaging for ERP feature extraction.
Offline Processing
- User Reference:ConditionalIntegrator: An offline replacement for cursor movement in an online task.
- User Reference:StateTransform: An offline replacement for hitting targets in an online task.
Application Module
Basically, the application module contains a single filter that handles trial sequencing and brain signal feedback. In the standard configuration, this task filter is surrounded by ConnectorInput and ConnectorOutput filters. These connector filters allow for exchanging data with external software over a UDP based socket protocol.
Filter documentation of application module filters is available for
Stimulus Presentation and Feedback
- User Reference:CursorTask: Feedback of brain signals in form of up to 3-dimensional cursor movement.
- User Reference:P3AVTask: Sequential presentation of stimuli.
- User Reference:P3Speller: A P300 speller matrix application.
External Interfacing Filters
- User Reference:ConnectorOutput: Reports state information to a UDP socket.
- User Reference:ConnectorInput: Sets state information according to input from a UDP socket.
- User Reference:KeystrokeFilter: Translates state information into simulated keyboard input.
- User Reference:JoystickFilter: Records joystick movements into a state.
- User Reference:KeyLogFilter: Records keyboard and mouse key presses into a state.
- User Reference:MouseFilter: Records mouse pointer coordinates into a state.
Internationalization
- User Reference:Localization: Translating subject-visible messages.