Genevieve Buckley
Genevieve Buckley
We might like to update the [dask-image contributing guide](https://image.dask.org/en/latest/contributing.html) to include: 1. Information about the GPU CI bot (see [here](https://docs.dask.org/en/stable/develop.html?highlight=gpu%20ci#gpu-ci), and/or 2. A link to the [main dask contributing guide](https://docs.dask.org/en/stable/develop.html)....
A lot of people have put a lot of effort into `imread` lately. This is great, and it's really helped. However, we've still got a way to go. This is...
Should we bump the minimum allowable dask version? I just got a dependabot alert in another repo indicating an update to dask=2021.10.0 is necessary: > An issue was discovered in...
The `find_objects` implementation is not currently compatible with cupy. It'd be nice to try and change that in a future PR. See https://github.com/dask/dask-image/pull/240
The `find_objects` functionality is still quite new, and it would be good to get some performance testing done. Some previous discussion is here https://github.com/dask/dask-image/pull/240#discussion_r675591009 > > Second, I think it's...
Suggestion from Marvin, about how we might improve the `find_objects` function https://github.com/dask/dask-image/pull/240#discussion_r681072020 > Hmm I'm wondering whether arguments to the top level compute call, such as the chosen scheduler, would...
I think demo dataset infrastructure would be useful. I made a PR proposal for napari here: https://github.com/napari/napari/pull/3580 (it's based on scikit-image: they use [pooch](https://www.fatiando.org/pooch/latest/) and like it) We could have...
We have this try/except statement for imports here: https://github.com/dask/dask-image/blob/bbe73c64ec16781053858c0408e9ca6e4af6fb9d/dask_image/ndmeasure/_utils/__init__.py#L14-L17 According to John: > Yeah this was renamed in Dask 1.1.0 ( https://github.com/dask/dask/pull/4348 ). If we are comfortable making that a...
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...