Skip to content

Commit 3692ba2

Browse files
committed
Edit code comment for clarity
1 parent e47d2fd commit 3692ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

episodes/07-thresholding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ data/trial-293.jpg,0.13607895611702128
608608
> > # blur before thresholding
609609
> > blurred_image = skimage.filters.gaussian(image, sigma=sigma)
610610
> >
611-
> > # perform inverse binary thresholding to mask the white label and circle
611+
> > # perform binary thresholding to mask the white label and circle
612612
> > binary_mask = blurred_image < 0.95
613613
> > # use the mask to remove the circle and label from the blurred image
614614
> > blurred_image[~binary_mask] = 0

0 commit comments

Comments
 (0)