File tree 1 file changed +0
-5
lines changed
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ and `data/colonies-03.tif`.
68
68
> > # display the image
69
69
> > fig, ax = plt.subplots()
70
70
> > plt.imshow(bacteria_image)
71
- > > plt.show()
72
71
> > ~~~
73
72
> > {: .language-python}
74
73
> >
@@ -84,7 +83,6 @@ and `data/colonies-03.tif`.
84
83
> > # display the gray image
85
84
> > fig, ax = plt.subplots()
86
85
> > plt.imshow(gray_bacteria, cmap="gray")
87
- > > plt.show()
88
86
> > ~~~
89
87
> > {: .language-python}
90
88
> >
@@ -101,7 +99,6 @@ and `data/colonies-03.tif`.
101
99
> > plt.xlabel("gray value")
102
100
> > plt.ylabel("pixel count")
103
101
> > plt.xlim(0, 1.0)
104
- > > plt.show()
105
102
> > ~~~
106
103
> > {: .language-python}
107
104
> >
@@ -117,7 +114,6 @@ and `data/colonies-03.tif`.
117
114
> > mask = blurred_image < 0.2
118
115
> > fig, ax = plt.subplots()
119
116
> > plt.imshow(mask, cmap="gray")
120
- > > plt.show()
121
117
> > ~~~
122
118
> > {: .language-python}
123
119
> >
@@ -146,7 +142,6 @@ and `data/colonies-03.tif`.
146
142
> > # plot overlay
147
143
> > fig, ax = plt.subplots()
148
144
> > plt.imshow(summary_image)
149
- > > plt.show()
150
145
> > ~~~
151
146
> > {: .language-python}
152
147
> >
You can’t perform that action at this time.
0 commit comments