Skip to content

Commit 8ecb19c

Browse files
committed
remove console reference
1 parent 13d52a6 commit 8ecb19c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

episodes/instance-segmentation-and-measurements.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ You are now ready to begin this lesson.
153153
## Our first measurement
154154

155155
We now have a mask image with each pixel classified as either cell nuclei
156-
(pixel value 1) or not (pixel value 0). Try running the following code in
157-
the console.
156+
(pixel value 1) or not (pixel value 0).
158157

159158
Create a new cell and run:
160159

@@ -172,7 +171,6 @@ nuclei_pixels = np.count_nonzero(semantic_seg)
172171
# Now we can work out what percentage of the image is cell nuclei
173172
nuclei_percent = nuclei_pixels / total_pixels * 100
174173

175-
# And write the results to the console.
176174
print("Percent Nuclei =", round(nuclei_percent, 2), "%")
177175
```
178176

0 commit comments

Comments
 (0)