Skip to main content

OpenCL based GPU-accelerated image processing in napari

Project description

napari-pyclesperanto-assistant

Image.sc forum website License PyPI Python Version tests codecov

The py-clEsperanto-assistant is a yet experimental napari plugin for building GPU-accelerated image processing workflows. It is part of the clEsperanto project. It uses pyclesperanto and with that pyopencl as backend for processing images. This plugin was generated with Cookiecutter using with napari's cookiecutter-napari-plugin template.

Installation

Installation using conda

conda install -c conda-forge pyopencl
pip install napari[all] napari-pyclesperanto-assistant

Afterwards, start napari from the command line:

napari --with clEsperanto

(You can also find the assistant in the Plugins menu.)

Installation using the napari installer

Download and install napari.

Windows users please download pyopencl...cl12-cp38-cp38-win_amd64.whl. Use the command line to navigate to the folder where you downloaded it (for example the Downloads folder using cd Downloads). From there, run the following line after replacing <username> with your username:

C:\Users\<username>\AppData\Local\Programs\napari\python\python.exe -m pip install pyopencl-2020.2.2+cl12-cp38-cp38-win_amd64.whl

Start napari and navigate to its menu Plugins > Install/Uninstall Package(s).... Select napari-pyclesperanto-assistant from the list and install it by clicking the blue button on the right:

Restart napari. Afterwards, you should find the Assistant in the plugins menu:

Installation on windows

On windows some additional steps are necessary. Download a pre-compiled wheel of pyopencl e.g. from here. It is recommended to install pyopencl-...+cl12-cp38-cp38-win_amd64 - the cl12 and cp38 are important when choosing the right download. They stand for OpenCL 1.2 and Python 3.8.

Enter the correct pyopencl filename and execute this from the command line:

pip install pyopencl-2020.3.1+cl12-cp38-cp38-win_amd64.whl

In case napari doesn't start up with an error mentioning numpy (see also), execute this from the command line:

pip install numpy==1.19.3

In case of error messages like RuntimeError: module compiled against API version 0xe but this version of numpy is 0xd try:

pip uninstall pyopencl
conda install -c conda-forge pyopencl==2021.2.1

Features

pyclesperanto offers various possibilities for processing images. It comes from developers who work in life sciences and thus, it may be focused towards processing two- and three-dimensional microscopy image data showing cells and tissues. A selection of pyclesperanto's functionality is available via the assistant user interface. Typical workflows which can be built with this assistant include

  • image filtering
    • denoising / noise reduction
    • background subtraction
    • grey value morphology
  • combining images
    • masking
    • image math (adding, subtracting, multiplying, dividing images)
  • image transformations
    • translation
    • rotation
    • sub-stacks
  • image projections
    • minimum / mean / maximum / sum / standard deviation projections
  • image segmentation
    • binarization
    • thresholding
    • labeling
    • regionalization
    • instance segmentation
    • semantic segmentation
    • detect label edges
    • label spots
    • connected component labeling
    • Voronoi-Otsu-labeling
  • post-processing of binary images
    • dilation
    • erosion
    • binary opening
    • binary closing
    • binary and / or / xor
  • post-processing of label images
    • dilation (expansion) of labels
    • erosion (shrinking) of labels
    • extend labels via Voronoi
    • exclude labels on edges
    • exclude labels within / out of size / value range
  • parametric maps
    • proximal / touching neighbor count
    • distance measurements to touching / proximal / n-nearest neighbors
    • pixel count map
    • mean / maximum / extension ratio map
  • label measurements / post processing of parametric maps
    • minimum / mean / maximum / standard deviation intensity maps
    • minimum / mean / maximum / standard deviation of touching / n-nearest / neighbors
  • neighbor meshes
    • touching neighbors
    • n-nearest neighbors
    • proximal neighbors
    • distance meshes
  • measurements based on label images
    • bounding box 2D / 3D
    • minimum / mean / maximum / sum / standard deviation intensity
    • mass center
    • centroid
    • mean / maximum distance to centroid (and min/max ratio shape descriptor)
    • mean / maximum distance to center of mass (and min/max ratio shape descriptor)
  • code export
    • python / Fiji-compatible jython
    • python jupyter notebooks
  • pyclesperanto scripting
    • cell counting
    • cell differentiation
    • tissue classification

Usage

This short tutorial demonstrates how to generate code using the pyclersperanto-assistant.

<iframe src="https://github.com/haesleinhuepf/pyclesperanto_assistant/raw/master/docs/images/pyclesperanto_assistant_screencast.mp4" width="600" height="300"></iframe> [Download workflow as video](https://github.com/haesleinhuepf/pyclesperanto_assistant/raw/master/docs/images/pyclesperanto_assistant_screencast.mp4)

Start up the assistant

Open a command line and start up the assistant and pass the image file you want to process. The shown example image can be found online

python -m napari_pyclesperanto_assistant C:\structure\code\napari_pyclesperanto_assistant\napari_pyclesperanto_assistant\data\CalibZAPWfixed_000154_max-16.tif

Alternatively, you can attach the assistant to your napari from within your python code like this:

import napari

# start napari
viewer = napari.Viewer()
viewer.window.add_plugin_dock_widget('clEsperanto')
napari.run()

napari will open with the assistant activated:

Set up a workflow

Choose categories of operations in the top right panel, for example start with denoising using a Gaussian Blur with sigma 1 in x and y:

Choose more processing steps. Note: You can change the input image/layer for each operation, the operation and its parameters in the bottom right panel. For example, continue with these steps

  • Filter (Background Removal): Top hat, radius 5 in x and y
  • Binarization: Threshold Otsu
  • Label: Voronoi labeling
  • Map: Touching neighbor count map
  • Binarization: Detect label edges, with the result from the second last step as input.

Hide some layers showing intermediate results. Switch the bleinding of the final result layer to "additive" to see through it on the original image.

Code generation

In the plugins menu, you find two entries which allow you to export your workflow as Python/Jython code.

Export your workflow as Jupyter notebook. Start the notebook from the command line using

jupyter notebook my_notebook.ipynb

Alternatively, export the workflow as Jython/Python script. This script can be executed from the command line like this

python my_script.py

It can also be executed in Fiji, in case the CLIJx-assistant is installed.

Note: Depeending on which layers were visible while exporting the code, different code is exported. Only visible layers are shown. Change layer visibility and export the script again. If Fiji asks you if it should reload the script file, click on "Reload".

For developers

Getting the recent code from github and locally installing it

git clone https://github.com/clesperanto/napari_pyclesperanto_assistant.git

pip install -e ./napari_pyclesperanto_assistant

Optional: Also install pyclesperantos recent source code from github:

git clone https://github.com/clEsperanto/pyclesperanto_prototype.git

pip install -e ./pyclesperanto_prototype

Starting up napari with the pyclesperanto assistant installed:

ipython --gui=qt napari_pyclesperanto_assistant\napari_pyclesperanto_assistant

Feedback welcome!

clEsperanto is developed in the open because we believe in the open source community. See our community guidelines. Feel free to drop feedback as github issue or via image.sc

Imprint

Project details


Download files

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

Source Distribution

napari_pyclesperanto_assistant-0.9.3.tar.gz (88.2 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page