scikit-image Python图像处理工具箱

scikit-image简介

scikit-image,Python第三方库,基于numpy、scipy.ndimage和其他库为基础的(科学)图像处理工具。

scikit-image应用实例

>>> import skimage as ski
>>> camera = ski.data.camera()
>>> type(camera)
<type 'numpy.ndarray'>
# An image with 512 rows and 512 columns
>>> camera.shape
(512, 512)
>>> coins = ski.data.coins()
>>> threshold_value = ski.filters.threshold_otsu(coins)
>>> threshold_value
107

scikit-image Github统计数据

BSD-3-Clause

Github 5.7k stars

scikit-image安装命令

python -m pip install -U scikit-image

scikit-image Python版本要求

scikit-image 0.22.0 Requires: Python >=3.9(数据来源:pypi)

免责声明:内容编辑自网络,仅供参考,不保证正确性,不作任何决策依据!!以上数据皆截止于博文的写稿日期。


行业导航 / Python指南 :
























Copyright © 2022-2024 笨鸟工具 x1y1z1.com All Rights Reserved.