Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
Co-authored-by: Toby Hodges <[email protected]>
  • Loading branch information
JeremyPike and tobyhodges authored Feb 1, 2024
1 parent 9f6e33d commit 5109322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/07-thresholding.md
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ data/trial-293.jpg,0.13190342420212767

The `&` operator above means that we have defined a logical AND statement. This combines the two tests of pixel intensities in the blurred image such that both must be true for a pixel's position to be set to `True` in the resulting mask.

| Result of `t < blurred_image` | Result of `blurred_image < 0.95 | Resulting value in `binary_mask` |
| Result of `t < blurred_image` | Result of `blurred_image < 0.95` | Resulting value in `binary_mask` |
|----------|---------|---------|
| False | True | False |
| True | False | False |
Expand Down

0 comments on commit 5109322

Please sign in to comment.