Skip to main content

Compute region properties using dask delayed and dataframe

Project description

dask-regionprops

License PyPI Python Version CI codecov

About

This is a small library that uses dask to compute regionprops in parallel.

In addition to parallelization, it adds a few features/specializations on top of the scikit-image regionprops implementation.

  1. dask_regionprops will return a dask dataframe containing the region properties as columns.
  2. Arrays can be numpy or dask arrays as well as xarray DataArrays backed by either array libary.
  3. ND arrays get processed as a sequence of 2D arrays. Typically we assume that the last two dimenions contain the images and the leading dimensions will be looped over.
  4. In the ND case, the result dataframe will have columns that map each label

Intended Use Case

I wrote this library to help analyze microscopy datasets. After segmentation I typically have a 4D xarray DataArray where the dimensions are (Position, Time, Y, X). Importantly, I reuse label values between positions but not times so for all of the time-points in position S, the region labelled r should refer to the same cell. Hopefully this motivated the decision to return the leading dimensions in the dataframe. For instance if you want to get the properties of a cell 5 in position 2 you could do something like:

from dask_regionprops import regionprops

# Assume data is a numpy/dask array that has dims corresponding to (S,T,Y,X)
props = regionprops(data)
single_cell_props = props.loc[(props["dim-0"]==2)&(props["label"]==5)]

If you are a more advanced pandas user, and you want to do this sort of analysis for many cells, you might consider using the leading dimensions and region labels as a multiindex to more efficiently access the data in this way.

Finally, a useful downstream application is to use the region properties as features for a classifer or maybe even a clustering algorithm. I have personally input labelled regions and the corresponding fluorescence images to identify progression through the cell cycle.

Contributions

Please feel free to open an issue or pull-request if you have questions or improvements for this library.

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

dask_regionprops-0.3.1.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

dask_regionprops-0.3.1-py2.py3-none-any.whl (6.7 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

  • Download URL: dask_regionprops-0.3.1.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.4

File hashes

Hashes for dask_regionprops-0.3.1.tar.gz
Algorithm Hash digest
SHA256 f2dbb31eca03ddf086338a0ce4b1793a210f0d7b450c543eafb27d03bfe796d3
MD5 ff3d879816ee6669f9e5aaf4e48d75ce
BLAKE2b-256 81021c0424e5d7f873171781efe8c515510cab81fa5fb640158c2e77fb7b2657

See more details on using hashes here.

File details

Details for the file dask_regionprops-0.3.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for dask_regionprops-0.3.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f37d986fddf8fa660b95a457d3865d5d9fa6015e4c5c2715668c216e5223d7a2
MD5 6c88e481cc03d15eb72e5ccce935380d
BLAKE2b-256 39120e2c7238f33c25889449d7e667d1d715d19325365e846776d98d921ae4bb

See more details on using hashes here.

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