Skip to content

Commit

Permalink
Fix typo in package name
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcor committed Aug 26, 2024
1 parent 3f6d1ed commit 93177bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorial/01_images_are_arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ More at https://scikit-image.org/docs/stable/user_guide/data_types.html.

## Image I/O

Mostly, we won't be using images from the scikit-image example datasets, but images stored on disk in JPEG, PNG, or TIFF format. Since scikit-image operates on NumPy arrays, *any* image reader library that returns arrays will do. We recommend `imageio`, but `matplotlib`, `pillow`, etc. also work.
Usually, we don't use images from the scikit-image example datasets, but images stored on disk in JPEG, PNG, or TIFF format. Since scikit-image operates on NumPy arrays, *any* image reader library that returns arrays will do. We recommend `imageio`, but `matplotlib`, `pillow`, etc. also work.

scikit-image provides a convenience wrapper around `image`, in the form of the `skimage.io` submodule:
scikit-image provides a convenience wrapper around `imageio`, in the form of the `skimage.io` submodule:

```python
image = ski.io.imread('./data/balloon.jpg')
Expand Down

0 comments on commit 93177bd

Please sign in to comment.