Skip to main content

nbmorph

Tests PyPI version

A small, Numba-accelerated Python package for morphological operations on 3D labeled images.

nbmorph provides a set of common morphological operations optimized for performance using Numba. It is designed to work with 3D NumPy arrays representing labeled image data, where different integer labels correspond to different objects.

Features

  • Numba-accelerated and multithreaded: Operations are just-in-time compiled with Numba for high performance on CPUs.

  • 3D Label Image Support: All operations are designed for 3D labeled images (integer NumPy arrays).

  • Quasi-Spherical Structuring Elements: Approximates spherical structuring elements by alternating between box and diamond kernels for dilation and erosion.

  • Core Morphological Operations:

    • dilate_labels_spherical: Expands the boundaries of labeled regions by assigning the mode of the neighborhood to background voxels.

    • erode_labels_spherical: Shrinks the boundaries of labeled regions.

    • open_labels_spherical: Removes small noise and thin protrusions (erosion followed by dilation).

    • close_labels_spherical: Fills small holes within objects (dilation followed by erosion).

    • smooth_labels_spherical: Smoothes object boundaries by performing an opening followed by a closing.

  • Mode (majority) filters: Stencil-based mode filters built on top of compile-time sorting networks for fast, fixed-size neighborhoods. Each comes in two variants:

    • onlyzero_mode_box / onlyzero_mode_diamond: Fill only background (zero) voxels with the mode of their 3x3x3 box or 6-connected diamond neighborhood, leaving labeled voxels unchanged.

    • mode_box / mode_diamond: Replace every voxel with the mode of its neighborhood (including the center), useful for denoising labeled volumes.

Effect of Morphological Smoothing Demonstration of the smoothing effect with varying radii and iterations on a sample image. The smoothing is followed by a dilation operation to fill up the empty space.

Installation

You can install nbmorph directly from pypi using pip:

pip install nbmorph

Usage

Here is a basic example of how to use nbmorph to apply operations to a 3D labeled image.

import numpy as np
import nbmorph
import numba

numba.set_num_threads(4)

# Create a sample 3D labeled image
# For example, a 5x5x5 cube of two different labels in a 10x10x10 volume
labels = np.zeros((10, 10, 10), dtype=np.uint16)
labels[2:7, 2:7, 2:5] = 1
labels[2:7, 2:7, 5:7] = 2

# First execution may take a while due to numba compilation
# Apply morphological erosion with a radius of 1
eroded_labels = nbmorph.erode_labels_spherical(labels, radius=1)

# Apply morphological dilation with a radius of 1
dilated_labels = nbmorph.dilate_labels_spherical(labels, radius=1)

# Apply morphological opening with a radius of 1
opened_labels = nbmorph.open_labels_spherical(labels, radius=1)

# Apply morphological closing with a radius of 1
closed_labels = nbmorph.close_labels_spherical(labels, radius=1)

# Apply morphological smoothing with a radius of 1
smoothed_labels = nbmorph.smooth_labels_spherical(labels, radius=1)

Testing

Tests are written using pytest. To run the tests, first install the test dependencies and then run pytest:

pip install .[test]
pytest

Benchmarking

A benchmark script is included in the scripts directory:

python scripts/benchmark.py

License

This project is licensed under the MIT License - see the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nbmorph-0.3.1.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nbmorph-0.3.1-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file nbmorph-0.3.1.tar.gz.

File metadata

  • Download URL: nbmorph-0.3.1.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nbmorph-0.3.1.tar.gz
Algorithm Hash digest
SHA256 cae8a51817602f8bf40754e8732a8d7638eb08f7819f99bdc35b40181e515966
MD5 9514d1838c1f6690ed20e843275b2b04
BLAKE2b-256 290429e0cc1c4d13647d197f5848d4ccbb580f63722e399cd0febdfbbe595cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nbmorph-0.3.1.tar.gz:

Publisher: release.yaml on MariusCausemann/nbmorph

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nbmorph-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: nbmorph-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nbmorph-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8733d2138b834a34daba5c603617012661870990790dd29590eda0a9813f35e3
MD5 bef44048024654aeeb45b7c2868d587d
BLAKE2b-256 bf9353454a5c3f2394f1ef41ecf83bf2a2deb056ab826ac8684a7d931c412ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nbmorph-0.3.1-py3-none-any.whl:

Publisher: release.yaml on MariusCausemann/nbmorph

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.3.1 This release

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page