Nuclei and cells segmentation
Prerequisites
Before starting this lesson, you should be familiar with:
Learning Objectives
After completing this lesson, learners should be able to:
Segment cells and nuclei, using nuclei as seeds for watershed segmentation of the cells.
Motivation
It is quite common to have fluorescence microscopy images with stainings for both nuclei and cytoplasm. While nuclei are typically separate and thus easy to segment, cells are often touching each other, which makes their segmentation much more challenging. The workflow presented in this module is a common approach to tackle this challenge and thus very useful to know.
Concept map
graph TD
N("Nuclei") --> NM("Nuclei label mask")
C("Cells") --> W("Watershed transform")
NM -->|seeds| W
W --> S("Cells label mask")
Figure
Activities
- Open image xyc_16bit__nuclei_tubulin_crop.tif.
- Segment nuclei and cells following the workflow depicted in the module figure.
Show activity for:
ImageJ Macro
Assessment
Discuss with your neighbour
- For a marker controlled watershed what will happen if you remove seeds touching the boundary before the watershed transform?
- Can you use the cell-mask, instead of the intensity image, for the watershed transform?
Solution
- This is not a good idea as you may not be able to find all cells and properly separate those. For instance merged cells may still touch the boundary.
- Apply a distance transform to the cell-mask and apply the watershed transform on its inverse.
True or false?
- For cell segmentation with a watershed transform one always needs nuclei as seeds.
- Nuclei are less likely to touch each other than cells.
- For a watershed transform, it is very important to image the cytoplasmic signal at the highest resolution.
Solution
- False; if the cellular signal happens to, e.g., be very dim in the cell center and bright at the cell boundaries one may try directly using it as an input to a watershed transform.
- True; nuclei have the cytoplasm around them, which often creates a spatial gap between neighbouring nuclei, making them easier to segment
- False; in fact, typically, the blurrier this signal is the better it is suited for separating cells using the watershed transform.
Explanations
Follow-up material
Recommended follow-up modules:
Learn more: