dask-image
dask-image copied to clipboard
Distributed image processing
**What happened**: Directly reading images from URLs is deprecated since 3.4 and will no longer be supported two minor releases later. Please open the URL for reading and pass the...
GPU Support
Would be useful to support these operations on GPUs as well. One way to do this might be to dispatch using CuPy.
We need a test for `imread` when given multiple input image filenames. The test coverage results show that these lines are uncovered: https://github.com/dask/dask-image/blob/329afe7499a3c699fb503643b81e91c3d5d4bc81/dask_image/imread/__init__.py#L72-L73
To allow for better dispatching & interoperability with other libraries, dask-image should make sure that all the `ndimage` functions are imported into a single namespace. We need to: 1. Decide...
We might be able to use dask-histogram from @douglasdavis to add a bunch of global thresholding functions here. * Github repository: https://github.com/douglasdavis/dask-histogram * Documentation: https://dask-histogram.readthedocs.io/en/latest/?badge=latest
This adds the rotate function to ndimage. I am struggling with the tests. https://github.com/dask/dask-image/issues/210
With the recent activity around `ndinterp.affine` and many eyes on that functionality I will open an issue for the following feature request: It would be great if one could provide...
Hi, I am working on a dask-image implementation of `ndimage.rotate`. The functionality is there and I am now trying to get the tests up and running similar to `affine_transform`. Now...
Hi @Zac-HD and @FudgeMunkey, We talked a while ago about whether it would be good to add property-based testing with hypothesis to dask-image. I'd like to suggest a good place...
Hi, I am fighting with large image arrays and found @m-albert 's amazing contribution opening up `affine_transform`. https://github.com/dask/dask-image/pull/159 Would it be possible to make the higher-level functions (such as [`rotate`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.ndimage.rotate.html)...