A meta plugin for processing timelapse data in napari timepoint by timepoint
Project description
napari-time-slicer
A meta plugin for processing timelapse data timepoint by timepoint. It
enables a list of napari plugins to process 2D+t or 3D+t data step by step when the user goes
through the timelapse. Currently, these plugins are using napari-time-slicer
:
- napari-segment-blobs-and-things-with-membranes
- napari-cupy-image-processing
- napari-pyclesperanto-assistant
- napari-accelerated-pixel-and-object-classification
- napari-simpleitk-image-processing
- napari-stress
- napari-process-points-and-surfaces
napari-time-slicer
enables inter-plugin communication, e.g. allowing to combine the plugins listed above in
one image processing workflow for segmenting a timelapse dataset:
The workflow can then also be exported as a script. The 'Generate Code' button can be found in the Workflow Inspector
If you want to convert a 3D dataset into a 2D + time dataset, use the
menu Tools > Utilities > Convert 3D stack to 2D timelapse (time-slicer)
. It will turn the 3D dataset to a 4D datset
where the Z-dimension (index 1) has only 1 element, which will in napari be displayed with a time-slider. Note: It is
recommended to remove the original 3D dataset after this conversion.
Working with large on-the-fly processed datasets
Using the napari-assistant complex image processing workflows on timelapse datasets can be setup.
In combination with the time-slicer it is possible to process time-lapse data that is larger than available computer memory.
In case the workflow only consists of images and label-images and out-of-memory issues arise, consider storing intermediate results on disk following this procedure:
After setting up the workflow and testing it on a couple of selected frames, store the entire processed timelapse dataset to disk
using the menu Tools > Utilities > Convert to file-backed timelapse data (time-slicer)
. It will open this dialog, where you can select
It is recommended to enter a folder location in the text field.
If not provided, a temporary folder will be created, typically in the User's temp folder in the home directory.
The user is responsible for emptying this folder from time to time.
The data stored in this folder can also be loaded into napari using its File > Open Folder...
menu.
Executing this operation can take time as every timepoint of the timelapse is computed. Afterwards, there will be another layer available in napari, which is typically faster to navigate through. Consider removing the layer(s) that were only needed to determine the new file-backed layer.
Usage for plugin developers
Plugins which implement the napari_experimental_provide_function
hook can make use of the @time_slicer
. At the moment,
only functions which take napari.types.ImageData
, napari.types.LabelsData
and basic python types such as int
and float
are supported. If you annotate such a function with @time_slicer
it will internally convert any 4D dataset
to a 3D dataset according to the timepoint currently selected in napari. Furthermore, when the napari user changes the
current timepoint or the input data of the function changes, a re-computation is invoked. Thus, it is recommended to
only use the time_slicer
for functions which can provide [almost] real-time performance. Another constraint is that
these annotated functions have to have a viewer
parameter. This is necessary to read the current timepoint from the
viewer when invoking the re-computions.
Example
import napari
from napari_time_slicer import time_slicer
@time_slicer
def threshold_otsu(image:napari.types.ImageData, viewer: napari.Viewer = None) -> napari.types.LabelsData:
# ...
You can see a full implementations of this concept in the napari plugins listed above.
If you want to combine slicing in time and processing z-stack images slice-by-slice, you can use the @slice_by_slice
annotation.
Make sure, to insert it after @time_slicer
as shown below and implemented in napari-pillow-image-processing
from napari_time_slicer import slice_by_slice
@time_slicer
@slice_by_slice
def blur_2d(image:napari.types.ImageData, sigma:float = 1, viewer: napari.Viewer = None) -> napari.types.LabelsData:
# ...
This napari plugin was generated with Cookiecutter using @napari's cookiecutter-napari-plugin template.
Installation
You can install napari-time-slicer
via pip:
pip install napari-time-slicer
To install latest development version :
pip install git+https://github.com/haesleinhuepf/napari-time-slicer.git
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-time-slicer" is free and open source software
Issues
If you encounter any problems, please file an issue along with a detailed description.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file napari-time-slicer-0.5.0.tar.gz
.
File metadata
- Download URL: napari-time-slicer-0.5.0.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 950d3b35d9f1657178201da73de56d038e9bf4e257cf120882081f2707f1e074 |
|
MD5 | 27b8f42fa1ec8062cbbd92c27c343c02 |
|
BLAKE2b-256 | f07e4bc75a41176ba66cdefb0b1ccb861e676f2c9cc3427ee1572f748d2905fc |
File details
Details for the file napari_time_slicer-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: napari_time_slicer-0.5.0-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c7f53f762cb3410da097be43ba47b4f4213e89930a3ade3ec1c7c1beb9d605f |
|
MD5 | 7008d641339f536e42ffc3f943ce5af8 |
|
BLAKE2b-256 | 5e70f4cec1bbd3b7256336979ff13bc4401382e52d4ff67a68c1e7e65125cf5f |