Skip to content

Commit 75d05ce

Browse files
committed
typos
1 parent 9d48489 commit 75d05ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

episodes/02-image-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ ax.imshow(three_colours, cmap="gray")
447447

448448
![](fig/grayscale.png){alt='Image in greyscale'}
449449

450-
Above we have exactly the same underying data matrix, but in greyscale.
450+
Above we have exactly the same underlying data matrix, but in greyscale.
451451
Zero maps to black, 255 maps to white, and 128 maps to medium grey.
452452
Here we only have a single channel in the data and utilize a grayscale color map
453453
to represent the luminance, or intensity of the data and correspondingly

episodes/08-connected-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ The labels of the objects are also returned by `ski.measure.regionprops`.
610610
We have already seen that we can create boolean arrays using comparison operators.
611611
Here we can use `object_areas > min_area`
612612
to produce an array that has the same dimension as `object_labels`.
613-
It can then used to select the labels of objects whose area is
613+
It can then be used to select the labels of objects whose area is
614614
greater than `min_area` by indexing:
615615

616616
```python

0 commit comments

Comments
 (0)