Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dask_image/imread/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def imread(fname, nframes=1, *, arraytype="numpy"):
Read image data into a Dask Array.

Provides a simple, fast mechanism to ingest image data into a
Dask Array.
Dask Array. This uses the `pims` package to open images.

Parameters
----------
Expand All @@ -35,7 +35,7 @@ def imread(fname, nframes=1, *, arraytype="numpy"):
Warnings
--------
There are several known issues with this function, and users are
recommended to use `dask.array.image.imread` instead.
recommended to use `dask.array.image.imread` or `bioio` instead.
"""

sfname = str(fname)
Expand Down
Loading