napari-segment-blobs-and-things-with-membranes

napari-segment-blobs-and-things-with-membranes

A plugin based on scikit-image for segmenting nuclei and cells based on fluorescent microscopy images with high intensity in nuclei and/or membranes

License PyPI Python Version tests codecov Development Status napari hub DOI

This napari-plugin is based on scikit-image and allows segmenting nuclei and cells based on fluorescence microscopy images with high intensity in nuclei and/or membranes.

Usage

This plugin populates image processing operations to the Tools menu in napari. You can recognize them with their suffix (nsbatwm) in brackets. Furthermore, it can be used from the napari-assistant graphical user interface. Therefore, just click the menu Tools > Utilities > Assistant (na) or run naparia from the command line.

img.png

You can also call these functions as shown in the demo notebook.

Voronoi-Otsu-Labeling

This algorithm uses Otsu's thresholding method in combination with Gaussian blur and a Voronoi-Tesselation approach to label bright objects such as nuclei in an intensity image. The alogrithm has two sigma parameters which allow you to fine-tune where objects should be cut (spot_sigma) and how smooth outlines should be (outline_sigma). This implementation aims to be similar to Voronoi-Otsu-Labeling in clesperanto.

img.png

Seeded Watershed

Starting from an image showing high-intensity membranes and a seed-image where objects have been labeled (e.g. using Voronoi-Otsu-Labeling), objects are labeled that are constrained by the membranes.

img.png

Seeded Watershed with mask

If there is additionally a mask image available, one can use the Seeded Watershed with mask, to constraint the flooding on a membrane image (1), starting from nuclei (2), limited by a mask image (3) to produce a cell segmentation within the mask (4).

img.png

Seeded Watershed using local minima as starting points

Similar to the Seeded Watershed and Voronoi-Otsu-Labeling explained above, you can use this tool to segment an image showing membranes without an additional image showing nuclei. The two sigma parameters allow to fine tune how close objects can be and how precise their boundaries are detected.

img.png

Gaussian blur

Applies a Gaussian blur to an image. This might be useful for denoising, e.g. before applying the Threshold-Otsu method.

img.png

Subtract background

Subtracts background using scikit-image's rolling-ball algorithm. This might be useful, for example to make intensity of membranes more similar in different regions of an image.

img.png

Threshold Otsu

Binarizes an image using scikit-image's threshold Otsu algorithm, also known as Otsu's method.

img.png

Split touching objects (formerly known as binary watershed).

In case objects stick together after thresholding, this tool might help. It aims to deliver similar results as ImageJ's watershed implementation.

img.png

Connected component labeling

Takes a binary image and produces a label image with all separated objects labeled differently. Under the hood, it uses scikit-image's label function.

img.png

Manual split and merge labels

Split and merge labels in napari manually via the Tools > Utilities menu:


This napari plugin was generated with Cookiecutter using with @napari's cookiecutter-napari-plugin template.

Installation

This plugin is part of devbio-napari. To install it, please follow its installation instructions.

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the BSD-3 license, "napari-segment-blobs-and-things-with-membranes" is free and open source software

Issues

If you encounter any problems, please create a thread on image.sc along with a detailed description and tag @haesleinhuepf.

Version:

  • 0.3.8

Last updated:

  • 26 March 2024

First released:

  • 25 September 2021

License:

Supported data:

  • Information not submitted

Plugin type:

GitHub activity:

  • Stars: 20
  • Forks: 8
  • Issues + PRs: 5

Python versions supported:

Operating system:

Requirements:

  • napari-plugin-engine>=0.1.4
  • numpy
  • scikit-image
  • scipy
  • napari-tools-menu>=0.1.17
  • napari-time-slicer>=0.4.8
  • napari-assistant
  • stackview>=0.3.2

Sign up to receive updates