Files
scikit-image/doc/examples/plot_otsu.py
T
2011-12-09 00:13:49 -05:00

24 lines
401 B
Python

"""
============
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.thresholding import threshold_otsu
image = camera()
thresh = threshold_otsu(camera())
binary = image > thresh
plt.imshow(binary)
plt.axis('off')
plt.show()