Skip to content

Commit 620e29a

Browse files
committed
markdown source builds
Auto-generated via `{sandpaper}` Source : 266a12a Branch : main Author : Ulf Schiller <uschille@users.noreply.github.com> Time : 2026-06-15 12:53:49 +0000 Message : Merge pull request datacarpentry#367 from savfod/main fix typos and link (episode 4)
1 parent 0ed9094 commit 620e29a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

04-drawing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Thus, even though we use `np.ones()` to create the mask,
108108
its pixel values are in fact not `1` but `True`.
109109
You could check this, e.g., by `print(mask[0, 0])`.
110110

111-
Next, we draw a filled, rectangle on the mask:
111+
Next, we draw a filled rectangle on the mask:
112112

113113
```python
114114
# Draw filled rectangle on the mask image
@@ -132,7 +132,7 @@ The function returns the rectangle as row (`rr`) and column (`cc`) coordinate ar
132132

133133
## Check the documentation!
134134

135-
When using an scikit-image function for the first time - or the fifth time -
135+
When using a scikit-image function for the first time - or the fifth time -
136136
it is wise to check how the function is used, via
137137
[the scikit-image documentation](https://scikit-image.org/docs/dev/user_guide)
138138
or other usage examples on programming-related sites such as
@@ -153,7 +153,7 @@ that the functions your program uses are behaving in the manner you intend.
153153
You may have wondered why we called the return values of the rectangle function
154154
`rr` and `cc`?!
155155
You may have guessed that `r` is short for `row` and `c` is short for `column`.
156-
However, the rectangle function returns mutiple rows and columns;
156+
However, the rectangle function returns multiple rows and columns;
157157
thus we used a convention of doubling the letter `r` to `rr` (and `c` to `cc`)
158158
to indicate that those are multiple values.
159159
In fact it may have even been clearer to name those variables `rows` and `columns`;
@@ -193,7 +193,7 @@ Other drawing functions supported by scikit-image can be found in
193193

194194
First let's make an empty, black image with a size of 800x600 pixels.
195195
Recall that a colour image has three channels for the colours red, green, and blue
196-
(RGB, cf. [Image Basics](03-skimage-images.md)).
196+
(RGB, cf. [Image Basics](02-image-basics.md)).
197197
Hence we need to create a 3D array of shape `(600, 800, 3)` where the last dimension represents the RGB colour channels.
198198

199199
```python

md5sum.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"episodes/01-introduction.md" "4fe9db38f75f93b3ffbdb3115d36b802" "site/built/01-introduction.md" "2026-02-10"
77
"episodes/02-image-basics.md" "e96045fe38777bd24cf11b76464f2eca" "site/built/02-image-basics.md" "2026-02-10"
88
"episodes/03-skimage-images.md" "d315488384f53b42cba0529550875145" "site/built/03-skimage-images.md" "2026-03-23"
9-
"episodes/04-drawing.md" "d8c686bdf8b610fe5b66a669e3685fb5" "site/built/04-drawing.md" "2026-03-23"
9+
"episodes/04-drawing.md" "e40d8f3871d47822107d10319ae389fd" "site/built/04-drawing.md" "2026-06-16"
1010
"episodes/05-creating-histograms.md" "309e406d538ff298286dd52175ec0692" "site/built/05-creating-histograms.md" "2026-03-23"
1111
"episodes/06-blurring.md" "3046847c190dd567652bb7cd0538ecd9" "site/built/06-blurring.md" "2026-03-23"
1212
"episodes/07-thresholding.md" "69f5de6e19030f4935f72af98a762c2b" "site/built/07-thresholding.md" "2026-05-29"

0 commit comments

Comments
 (0)