您现在的位置是:课程教程文章
Python的scikit-image模块是什么?
2023-12-15 21:30课程教程文章 人已围观
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
Linux安装方式:
pip install -U scikit-image
Windows安装方式:
pip install scikit-image
实例应用:
1、导入彩色图像
from skimage import data import numpy as np import matplotlib.pyplot as plt image = data.astronaut() plt.imshow(image);
2、分割操作
from skimage import io image = io.imread('girl.jpg') plt.imshow(image);
常见的使用方式是上述说明的两种情况,大家可以根据实际情况,进行灵活的调用,好了,本章内容到此结束,回顾理解吧。
课程教程:Python的scikit-image模块是什么?上一篇:json在线解析怎么用
下一篇:没有了