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
6 changes: 3 additions & 3 deletions docs/tutorial/tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import sys
import tempfile

import dask_image.imread
from dask.array.image import imread
import matplotlib.pyplot as plt
import skimage.color
import skimage.data
Expand Down Expand Up @@ -49,10 +49,10 @@
# This also makes stack-to-chunk flexible - as long as you can put your 2D images into
# a 3D dask array, they can be used with stack-to-chunk.
#
# For this tutorial, ``dask_image`` provides a convenient way for us to read in all our
# For this tutorial, ``dask.array.image.imread`` provides a convenient way for us to read in all our
# TIFF files:

images = dask_image.imread.imread(str(slice_dir / "*.tif")).T
images = imread(str(slice_dir / "*.tif")).T
print(images)

# %%
Expand Down