SSVEP Experiments

Steady state visually evoked potentials (SSVEPs) are commonly used in neuroscience and BCI research.

SSVEPs are brain signals that occur in response to a visual stimulus flickering at a fixed frequency (typically 3-75 Hz). A rhythmic stimulus can entrain brain activity in the occipital lobe, which is commonly associated with the visual cortex.

Here, we show you how to use Mentalab Explore with SSVEP-based classification tasks. The code is open-source and available here. You can run it as is or use it to build your own SSVEP based applications.

There are two classifiers:

  • A real-time, online SSVEP classifier
  • An offline classifier

In both cases, the classifier determines which stimulus a participant is looking at by analyzing EEG signals. The stimulus whose frequency most closely matches the frequency of EEG signals is considered the target stimulus - and the one the participant is looking at.

Preparation

Software

  1. Install explorepy. Choose Option 2 (Python) if you are installing explorepy on a Windows system.
  2. Download the explorepy code directly from GitHub. To do this, click on the green Code button, and “Download ZIP”. Remember where you extract the files, you will need this location later.
  3. Activate your Anaconda virtual environment: conda activate myenv
  4. Install the required packages: pip install scikit-learn matplotlib psychopy mne

Hardware

  1. Setup the cap and electrodes. Place EEG electrodes on the occipital visual cortex (Oz, O1, O2, POz, etc.) and the ground electrode on Fpz or the mastoid (or any other location far enough from other electrodes).

  2. Run an impedance check to verify that you will produce instructuve signals. For more information on achieving low impedances, please have a read of our Improving Impedances page.

Online SSVEP classifier

  1. Navigate to the folder in which you extracted the files in step 2. There will be a sub-directory called /examples/ssvep. Move into this path from your Python console: cd <PATH-TO-SSVEP>
  2. Turn on the device and run the following command in your terminal (replace #### with your device ID, e.g. Explore_1438):
    python online_ssvep.py --name Explore_#### --duration 100
    
SSVEP experiment stimuli
SSVEP experiment stimuli.

A new browser window will open. In it, four flickering stimuli will display. The stimuli are flickering at the following frequencies:

  • Bottom-left: 12 Hz
  • Top-left: 10 Hz
  • Bottom-right: 7.5 Hz
  • Top-right: 8.6 Hz

Based on the subject’s real-time EEG, the arrow in the center will point to one of the 4 circles. The quicker the arrow points to the target stimulus, the higher the accuracy of the EEG signal.

Once the experiment has run, navigate back to your Python console and hit Ctrl+C to exit.

Interpret the results

Frame durations for the SSVEP experiment
Frame durations for the SSVEP experiment stimuli.

The key takeaway is that the quicker the arrow follows the participant’s focus, the more efficient and accurate the classifier.

All screens have a different refresh rate, which can cause frames to drop, reducing the classifier’s performance. The experiment script auto-generates stimuli by calculating frame duration over experiment time.

In the figure below, longer vertical lines indicate longer frame displays. We can see that one frame dropped early in the experiment, and a few frames displayed longer than others. Overall, however, the classifier was successful.

Offline SSVEP classifier

An offline SSVEP classifier can be used to measure the accuracy of your EEG set-up.

In this experiment, we record EEG data while the participant looks at specified target stimuli. We run an offline analysis of the recorded data to compute the accuracy of the system. Finally, we visualize the Time-Frequency-Representations (TFR) of the recorded EEG signal.

To undertake offline SSVEP analysis:

  1. Prepare the cap and electrodes as in the online SSVEP experiment.

  2. Turn on the device and run the following command in your terminal (replace #### with your device ID e.g Explore_1438):

    python offline_experiment.py --name Explore_#### --filename test_rec
    

    The experiment runs 100 trials in 20 blocks of 5. You can change the number of runs, however, by navigating to offline_experiment.py and altering the value assigned to the variables n_blocks and trials_per_block (lines 16/17).

    At the beginning of each trial, an arrow will indicate where the participant should look. Shortly after its appearance, a flickering stimulus will appear in the indicated position.

  3. Once the experiment is complete, the recorded data can be analyzed. To do this, run offline_analysis.py.

    python offline_analysis.py --filename test_rec
    

Interpret the results

SSVEP accuracy over trial duration
Accuracy over trial duration.
The offline SSVEP experiment will automatically generate two plots.

System accuracy

The first figure indicates that within approximately 0.8 seconds, the system can differentiate between stimulus response signals approximately 90% of the time. After 1 second, the system is 98% accurate; and within 1.2 seconds it is 100% accurate.

Time-frequency representation

SSVEP time-frequency representation for each channel
Time-frequency representation for each channel.

In the second plot, we see the time-frequency representations for each channel. These representations clearly show the entrainment of the EEG signal for the two target frequencies (look at the dark red bands!). The left-most plots correspond to the stimulus flickering at 10 Hz, and the right-most plots for the stimulus flickering at 7.5 Hz.

For more information or support, do not hesitate to get in contact at: support@mentalab.com

Copyright © 2024 Mentalab