از اینجا شروع کنید
Getting started
>>> import skimage>>> from skimage import data
>>> camera = data.camera()>>> type(camera)
<type 'numpy.ndarray'>
>>> # An image with 512 rows and 512 columns
>>> camera.shape
(512, 512)>>> coins = data.coins()
>>> from skimage import filters
>>> threshold_value = filters.threshold_otsu(coins)
>>> threshold_value
107Last updated