mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-30 11:44:53 +08:00
8ed834a3ab
This example was removed in a previous commit.
24 lines
392 B
Python
24 lines
392 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.filter import threshold_otsu
|
|
|
|
|
|
image = camera()
|
|
thresh = threshold_otsu(image)
|
|
binary = image > thresh
|
|
|
|
plt.imshow(binary)
|
|
plt.axis('off')
|
|
plt.show()
|
|
|