MRI with EEG Visualization

PythonPythonBeginner
Practice Now

This tutorial is from open-source community. Access the source code

Introduction

This lab will guide you through creating a visualization of an MRI image with EEG traces using Python Matplotlib. You will learn how to load and display MRI and EEG data, plot an intensity histogram of the MRI image, and plot EEG traces with time on the x-axis and electrode channels on the y-axis.

VM Tips

After the VM startup is done, click the top left corner to switch to the Notebook tab to access Jupyter Notebook for practice.

Sometimes, you may need to wait a few seconds for Jupyter Notebook to finish loading. The validation of operations cannot be automated because of limitations in Jupyter Notebook.

If you face issues during learning, feel free to ask Labby. Provide feedback after the session, and we will promptly resolve the problem for you.


Skills Graph

%%%%{init: {'theme':'neutral'}}%%%% flowchart RL python(("`Python`")) -.-> python/BasicConceptsGroup(["`Basic Concepts`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/BasicConceptsGroup(["`Basic Concepts`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/PlottingDataGroup(["`Plotting Data`"]) python(("`Python`")) -.-> python/ControlFlowGroup(["`Control Flow`"]) python(("`Python`")) -.-> python/DataStructuresGroup(["`Data Structures`"]) python(("`Python`")) -.-> python/ModulesandPackagesGroup(["`Modules and Packages`"]) python(("`Python`")) -.-> python/DataScienceandMachineLearningGroup(["`Data Science and Machine Learning`"]) python(("`Python`")) -.-> python/FunctionsGroup(["`Functions`"]) python/BasicConceptsGroup -.-> python/comments("`Comments`") matplotlib/BasicConceptsGroup -.-> matplotlib/importing_matplotlib("`Importing Matplotlib`") matplotlib/BasicConceptsGroup -.-> matplotlib/figures_axes("`Understanding Figures and Axes`") matplotlib/PlottingDataGroup -.-> matplotlib/histograms("`Histograms`") matplotlib/PlottingDataGroup -.-> matplotlib/heatmaps("`Heatmaps`") python/BasicConceptsGroup -.-> python/variables_data_types("`Variables and Data Types`") python/BasicConceptsGroup -.-> python/numeric_types("`Numeric Types`") python/ControlFlowGroup -.-> python/for_loops("`For Loops`") python/DataStructuresGroup -.-> python/lists("`Lists`") python/DataStructuresGroup -.-> python/tuples("`Tuples`") python/ModulesandPackagesGroup -.-> python/importing_modules("`Importing Modules`") python/DataScienceandMachineLearningGroup -.-> python/numerical_computing("`Numerical Computing`") python/DataScienceandMachineLearningGroup -.-> python/data_visualization("`Data Visualization`") python/FunctionsGroup -.-> python/build_in_functions("`Build-in Functions`") subgraph Lab Skills python/comments -.-> lab-48834{{"`MRI with EEG Visualization`"}} matplotlib/importing_matplotlib -.-> lab-48834{{"`MRI with EEG Visualization`"}} matplotlib/figures_axes -.-> lab-48834{{"`MRI with EEG Visualization`"}} matplotlib/histograms -.-> lab-48834{{"`MRI with EEG Visualization`"}} matplotlib/heatmaps -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/variables_data_types -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/numeric_types -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/for_loops -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/lists -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/tuples -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/importing_modules -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/numerical_computing -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/data_visualization -.-> lab-48834{{"`MRI with EEG Visualization`"}} python/build_in_functions -.-> lab-48834{{"`MRI with EEG Visualization`"}} end

Load MRI Data and Display the Image

The first step is to load the MRI data and display the image. We will use the imshow() function to display the image and axis('off') to remove the axis labels.

import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure("MRI_with_EEG")

## Load the MRI data (256x256 16-bit integers)
im = np.load('mri_data.npy')

## Plot the MRI image
ax0 = fig.add_subplot(2, 2, 1)
ax0.imshow(im, cmap='gray')
ax0.axis('off')

Plot the Histogram of MRI Intensity

Next, we will plot the histogram of MRI intensity using the hist() function. We will normalize the intensity values to range between 0 and 1.

## Plot the histogram of MRI intensity
ax1 = fig.add_subplot(2, 2, 2)
im = np.ravel(im)
im = im[np.nonzero(im)]  ## Ignore the background
im = im / im.max()  ## Normalize
ax1.hist(im, bins=100)
ax1.set_xlabel('Intensity (a.u.)')
ax1.set_ylabel('MRI density')

Load EEG Data and Plot Traces

The next step is to load the EEG data and plot the traces. We will use the fromfile() function to load the data from a file and LineCollection() to plot the traces. We will also set the y-axis tick labels to the electrode channels.

## Load the EEG data
n_samples, n_rows = 800, 4
data = np.load('eeg_data.npy')
t = 10 * np.arange(n_samples) / n_samples

## Plot the EEG
ax2 = fig.add_subplot(2, 1, 2)
ax2.set_xlim(0, 10)
ax2.set_xticks(np.arange(10))
dmin = data.min()
dmax = data.max()
dr = (dmax - dmin) * 0.7  ## Crowd them a bit.
y0 = dmin
y1 = (n_rows - 1) * dr + dmax
ax2.set_ylim(y0, y1)

segs = []
for i in range(n_rows):
    segs.append(np.column_stack((t, data[:, i])))

offsets = np.zeros((n_rows, 2), dtype=float)
offsets[:, 1] = np.arange(n_rows) * dr

lines = LineCollection(segs, offsets=offsets, transOffset=None)
ax2.add_collection(lines)

## Set the yticks to use axes coordinates on the y-axis
ax2.set_yticks(offsets[:, 1])
ax2.set_yticklabels(['PG3', 'PG5', 'PG7', 'PG9'])
ax2.set_xlabel('Time (s)')

Display the Visualization

Finally, we will display the visualization using the show() function.

plt.tight_layout()
plt.show()

Summary

In this lab, you learned how to create a visualization of an MRI image with EEG traces using Python Matplotlib. You loaded and displayed the MRI image, plotted an intensity histogram of the MRI image, and plotted EEG traces with time on the x-axis and electrode channels on the y-axis.

Other Python Tutorials you may like