Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyPike committed Nov 13, 2024
1 parent 9d48489 commit 75d05ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion episodes/02-image-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ ax.imshow(three_colours, cmap="gray")

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

Above we have exactly the same underying data matrix, but in greyscale.
Above we have exactly the same underlying data matrix, but in greyscale.
Zero maps to black, 255 maps to white, and 128 maps to medium grey.
Here we only have a single channel in the data and utilize a grayscale color map
to represent the luminance, or intensity of the data and correspondingly
Expand Down
2 changes: 1 addition & 1 deletion episodes/08-connected-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ The labels of the objects are also returned by `ski.measure.regionprops`.
We have already seen that we can create boolean arrays using comparison operators.
Here we can use `object_areas > min_area`
to produce an array that has the same dimension as `object_labels`.
It can then used to select the labels of objects whose area is
It can then be used to select the labels of objects whose area is
greater than `min_area` by indexing:

```python
Expand Down

0 comments on commit 75d05ce

Please sign in to comment.