AMHCT Bio-Image Analysis#
This page contains the resources for the lecture “Navigating the Reproducibility Storm with Bio-Image Analysis” in the Advanced Methods & Human Cell Technologies (AMHCT) as part of the Regenerative Biology and Medicine Master’s Program.
Lecture Content#
This course will introduce the participants to the basics of bio-image analysis and processing in microscopy using open-source software. The course will cover the following topics:
Installation and introduction to napari
Loading images from OMERO with napari-omero
Segmentation with Machine Learning using napari-apoc
Quick view into micro-sam
Feature Extraction with napari-skimage-regionprops
Object Classification with Machine Learning using napari-apoc and napari-clusters-plotter
Reproducible image analysis with napari and omero using napari-apoc and napari-omero
Slides are available here.
Logging in to OMERO#
Download the OMERO Insight application and install it on your computer. This application allows you to connect to the OMERO server and upload images (the web interface cannot be used to upload images).
Connect to the CMCB VPN if you are not already connected. You can find the instructions for this here (internal link, needs ZIH login to be accessed).
Open the OMERO Insight application, click on the wrench icon and add the following server address
omero-int.biotec.tu-dresden.de
. This is the address of the OMERO server you will be using during the course.

Use your ZIH credentials to log in.
Setting up the environment#
To follow the course, you will need to have Python installed in your computer.
Install Miniforge
Download the installer for your operating system (Windows, macOS, or Linux).
Follow the installation instructions for your operating system.
Open a terminal (preferably Miniforge Prompt, but not necessarily) and run the following command to clone/download the course repository to your computer:
git clone https://github.com/BiAPoL/AMHCT_Bio_Image_Analysis_2025.git
Alternatively, you can download the repository as a .zip
file by clicking on the green “Code” button on the top right of the repository page and selecting “Download ZIP”. Remember the place where you decompress the file for the next steps.
Navigate to the course repository:
cd AMHCT_Bio_Image_Analysis_2025
If you chose to download the .zip
file in the previous step, you will need to navigate to the folder where you decompressed the file.
The folder name could be different, for example, AMHCT_Bio_Image_Analysis_2025-main
or similar.
Install the required Python packages with:
mamba env create -f environment.yml
This creates a new environment called amhct
and installs all the required packages.
Activate the environment:
mamba activate amhct
This will activate the environment, which means giving access to the path where the installed packages are.
You should see the name (amhct)
now in front of the active typing line. If this does not work, you may need to restart your terminal or run the command conda init
and then restart your terminal.
Starting napari#
You can now start napari by typing:
napari
in the terminal. The first time you start napari may take longer than usual.
If you have issues with pyclesperanto, check out this troubleshooting section.