Skip to content

Commit 7834001

Browse files
committed
final list in episode 5 changed
1 parent 253693d commit 7834001

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
@@ -449,7 +449,8 @@ ax.set_ylabel("pixel count")
449449

450450
- In many cases, we can load images in grayscale by passing the `mode="L"` argument to the `iio.imread()` function.
451451
- We can create histograms of images with the `np.histogram` function.
452-
- We can separate the RGB channels of an image using slicing operations.
453452
- We can display histograms using `ax.plot()` with the `bin_edges` and `histogram` values returned by `np.histogram()`.
453+
- The plot can be customised using `set_xlabel()`, `set_ylabel()`, `set_xlim()`, `set_ylim()`, and `set_title()`.
454+
- We can separate the RGB channels of an image using slicing operations.
454455

455456
::::::::::::::::::::::::::::::::::::::::::::::::::

0 commit comments

Comments
 (0)