Summary and Setup

This is a new lesson built with The Carpentries Workbench.

Medical image analysis has become an essential tool in clinical research, enabling scientists to extract valuable insights from complex imaging data. This course is designed to enhance your computational skills in medical imaging, leveraging the power of Python to address advanced research questions. You already possess foundational skills in Python, and basic image processing, and this course will build on that knowledge to help you conduct sophisticated analyses with medical images.

The course begins with an overview of medical imaging and progresses to practical techniques for image processing using libraries like scikit-image, pydicom, and SimpleITK. You will then dive into feature extraction, machine learning applications, and statistical methods for analyzing anatomical differences. By the end of the course, you will have a comprehensive understanding of how to apply computational techniques to medical imaging research, enhancing your ability to conduct impactful studies and contribute to the advancement of clinical knowledge.

Installing the Python environment


We’ll use Mamba (a faster alternative to Conda fully compatible with it) to set up the Python environment. The environment YML file for the lesson is available on GitHub.

Installing Mamba via Miniforge

Miniforge is a minimal installer for Conda that includes Mamba. Here are the installation instructions for different operating systems:

  1. Download the Miniforge3 installer for Windows from the official GitHub repository.
  2. Run the installer and follow the prompts.
  1. Open a terminal window.
  2. Download the installer using curl or wget or your favorite program and run:

BASH

curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
bash Miniforge3-$(uname)-$(uname -m).sh

or

BASH

wget "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
bash Miniforge3-$(uname)-$(uname -m).sh
  1. Follow the prompts to complete the installation.
  2. Close and reopen your terminal to apply the changes.

If you encounter any issues, please refer to the official Mamba documentation.

If you’re unable to install Mamba, you can alternatively install Conda as a fallback option. If you choose this route, remember to replace mamba with conda in all subsequent commands in these instructions.

After you have a working Mamba (or Conda) installation you can proceed to create and activate the environment.

Creating the environment

  1. Open your terminal:
    • On Windows: Open “Miniforge Prompt” or “Command Prompt”.
    • On macOS/Linux: Open your regular terminal.
  2. Navigate to your lesson workspace directory.
  3. Run the following command:

BASH

mamba env create -f https://raw.githubusercontent.com/esciencecenter-digital-skills/medical-image-processing/main/learners/environment.yml
  1. Wait for the installation to complete. This may take a few minutes.

Activating the environment

After the installation is complete, activate the environment:

BASH

mamba activate medical_image_proc

Downloading image files from Zenodo


Now that you have the environment set up, let’s download the necessary files from Zenodo.

Option A: manual download

  1. Open your web browser and navigate to this lesson’s data Zenodo record address.
  2. Look for the “Files” section on the page.
  3. Click the download button for downloading the data.zip file containing the images.
  4. Once downloaded, extract the contents of the ZIP file.
  5. Move the extracted folder to your lesson workspace directory (where you’ll create notebooks and work during the lesson).

Option B: using Zenodo API

You can use the Zenodo API to download the files. The zenodo_get package should already be installed in your environment.

  1. Ensure you’re in your lesson workspace directory and your medical_image_proc environment is activated.
  2. Use the following command in your terminal (Miniforge Prompt if you are a Windows user):

BASH

zenodo_get 13311246
  1. Extract the contents of data.zip.

Remember to keep the medical_image_proc environment activated throughout the entire lesson. If you close your terminal or restart your computer, you’ll need to activate the environment again using the activation command above.

Also, remember to verify that the extracted folder is in your lesson workspace directory (where you’ll create notebooks and work during the lesson).