You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Images are read from disk with the `iio.imread()` function.
574
-
- We create a window that automatically scales the displayed image with Matplotlib and calling `show()` on the global figure object.
574
+
- We create a window that automatically scales the displayed image with Matplotlib and calling `imshow()` on the global figure object.
575
575
- Colour images can be transformed to grayscale using `ski.color.rgb2gray()` or, in many cases, be read as grayscale directly by passing the argument `mode="L"` to `iio.imread()`.
576
576
- We can resize images with the `ski.transform.resize()` function.
577
577
- NumPy array commands, such as `image[image < 128] = 0`, can be used to manipulate the pixels of an image.
578
578
- Array slicing can be used to extract sub-images or modify areas of images, e.g., `clip = image[60:150, 135:480, :]`.
579
-
- Metadata is not retained when images are loaded as scikit-image images.
579
+
- Metadata is not retained when images are loaded as NumPy arrays using `iio.imread()`.
0 commit comments