Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion episodes/07-thresholding.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ exercises: 50
In this episode, we will learn how to use scikit-image functions to apply
thresholding to an image.
Thresholding is a type of *image segmentation*,
where we change the pixels of an image to make the image easier to analyze.
which is the partitioning of an image into disjoint regions, or *segments*.
The different segments can then be analyzed separately.
Comment on lines +29 to +30
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
which is the partitioning of an image into disjoint regions, or *segments*.
The different segments can then be analyzed separately.
where an image is split into different regions, or *segments*.
These segments can then be analyzed separately.

I feel like the words 'partitioning' and 'disjoint' may not be familiar to all learners? How about using 'split' / 'different' as simpler terms?

In thresholding, we convert an image from colour or grayscale into
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably good to add a blank line above 'In thresholding...' to start a new paragraph. Makes this section easier to read in the rendered docs.

a *binary image*, i.e., one that is simply black and white.
Most frequently,
Expand Down
Loading