Add example for threshoding

This example was removed in a previous commit.
This commit is contained in:
Tony S Yu
2011-12-17 22:02:10 -05:00
parent 756dfd5020
commit 8ed834a3ab
+23
View File
@@ -0,0 +1,23 @@
"""
============
Thresholding
============
Thresholding is used to create a binary image. This example uses Otsu's method to calculate the threshold value.
"""
import matplotlib.pyplot as plt
from skimage.data import camera
from skimage.filter import threshold_otsu
image = camera()
thresh = threshold_otsu(image)
binary = image > thresh
plt.imshow(binary)
plt.axis('off')
plt.show()