Skip to content

Commit e025cad

Browse files
committed
modified sentence
1 parent e1032b9 commit e025cad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

episodes/05-creating-histograms.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ plt.imshow(plant_seedling, cmap="gray")
7373
Again, we use the `iio.imread()` function to load our image.
7474
Then, we convert the grayscale image of integer dtype, with 0-255 range, into
7575
a floating-point one with 0-1 range, by calling the function
76-
`ski.util.img_as_float`.
76+
`ski.util.img_as_float`. We can also calculate histograms for 8 bit images as we will see in the
77+
subsequent exercises.
7778

7879
We now use the function `np.histogram` to compute the histogram of our image
7980
which, after all, is a NumPy array:

0 commit comments

Comments
 (0)