dask-image
dask-image copied to clipboard
Distributed image processing
Bumps [coverallsapp/github-action](https://github.com/coverallsapp/github-action) from 2.3.0 to 2.3.3. Release notes Sourced from coverallsapp/github-action's releases. v2.3.3 What's Changed Always point the major version tag to the latest release (fixes #222) by @afinetooth in...
I'm working in a new conda environment, with the following `environment.yaml` file (mine contains more, but this is boiled down to nearly the minimum). ```` name: newenvironment channels: - conda-forge...
The Gaussian filter is not behaving lazily as expected and is allocating RAM for the entire array
The test script below uses 20 GB of RAM for the full array size. Despite the small Gaussian kernel, which requires minimal chunk overlap, dask_image.ndfilters still fails to perform lazy...
I think that for most of dask-image's functionality the [documentation](https://image.dask.org) is very informative. Especially because most functions can be used in the same way as their ndimage counterparts and for...
Support trailing channel axis in labeled_comprehension
Issue to discuss the following: A use case / question that often comes up is how to best apply regionprops to dask arrays. At least to my knowledge, there's no...
There've been a few changes which it would make sense to create a release for. Will try to do this beginning of next week, unless there are objections of course...
Currently warnings on CI can get lost in the logs. It may be helpful to have some (or all) jobs convert warnings to errors so that we can better catch...
I am obtaining an OOM error when using ndmeasure.label with a large array. **Minimal Complete Verifiable Example**: ```python nx = 5120 # things are OK < 2500 arr = da.random.random(size=(nx,nx,nx))...