Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
Auto-generated via {sandpaper}
Source  : f78936e
Branch  : main
Author  : Ulf Schiller <[email protected]>
Time    : 2024-03-14 15:43:51 +0000
Message : Merge pull request #322 from mkcor/patch-2

Prefix functions used for customising plots.
  • Loading branch information
actions-user committed Mar 14, 2024
1 parent 7205fd1 commit f9e226e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 05-creating-histograms.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ ax.set_ylabel("pixel count")
- In many cases, we can load images in grayscale by passing the `mode="L"` argument to the `iio.imread()` function.
- We can create histograms of images with the `np.histogram` function.
- We can display histograms using `ax.plot()` with the `bin_edges` and `histogram` values returned by `np.histogram()`.
- The plot can be customised using `set_xlabel()`, `set_ylabel()`, `set_xlim()`, `set_ylim()`, and `set_title()`.
- The plot can be customised using `ax.set_xlabel()`, `ax.set_ylabel()`, `ax.set_xlim()`, `ax.set_ylim()`, and `ax.set_title()`.
- We can separate the colour channels of an RGB image using slicing operations and create histograms for each colour channel separately.

::::::::::::::::::::::::::::::::::::::::::::::::::
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"episodes/02-image-basics.md" "7a99d30d6ef4a11b8766fef3096fd1ab" "site/built/02-image-basics.md" "2024-03-12"
"episodes/03-skimage-images.md" "9ab46078d049def7053e98f793fe426a" "site/built/03-skimage-images.md" "2024-03-12"
"episodes/04-drawing.md" "d52b45e266997d93e359c63d53822e9b" "site/built/04-drawing.md" "2024-03-12"
"episodes/05-creating-histograms.md" "6feadaf21b14e224b83dccf4b12b464c" "site/built/05-creating-histograms.md" "2024-03-12"
"episodes/05-creating-histograms.md" "4abbd123ba97d63c795398be6f6b7621" "site/built/05-creating-histograms.md" "2024-03-14"
"episodes/06-blurring.md" "131274433675bee650e218bd28830435" "site/built/06-blurring.md" "2024-03-12"
"episodes/07-thresholding.md" "4d34b89c8cd33cb6bb54103f805a39b9" "site/built/07-thresholding.md" "2024-03-12"
"episodes/08-connected-components.md" "79495641132337de72f9df87ce5a2d21" "site/built/08-connected-components.md" "2024-03-12"
Expand Down

0 comments on commit f9e226e

Please sign in to comment.