当前位置:网站首页>scikit-image图像处理笔记
scikit-image图像处理笔记
2022-08-05 05:25:00 【ProfSnail】
scikit-image内置部分数据集,以及图像处理方法。介绍几个学来感觉有用的函数和方法。
参考资料:《Python图像处理实战》
安装方法:pip install scikit-image
导入方法:
from skimage.io import imread, imsave, imshow, show, imread_collection, imshow_collection
from skimage import color, viewer, exposure, img_as_float, data
from skimage.transform import SimilarityTransform, warp, swirl
from skimage.util import invert, random_noise, montage
使用scikit-image内置的数据集
im = data.astronaut()
imshow(im), show()

一次性同时读取和显示多个图像:
imread_collection? =>
Signature:
imread_collection(
load_pattern,
conserve_memory=True,
plugin=None,
**plugin_args,
)
Docstring:
Load a collection of images.
Parameters
----------
load_pattern : str or list
List of objects to load. These are usually filenames, but may
vary depending on the currently active plugin. See the docstring
for ``ImageCollection`` for the default behaviour of this parameter.
conserve_memory : bool, optional
If True, never keep more than one in memory at a specific
time. Otherwise, images will be cached once they are loaded.
Returns
-------
ic : ImageCollection
Collection of images.
Other Parameters
----------------
plugin_args : keywords
Passed to the given plugin.
File: c:\users\zhang\appdata\local\programs\python\python37\lib\site-packages\skimage\io\_io.py
Type: function
使用方法:
ic = imread_collection(ic = imread_collection(['images/69015.jpg','images/210088.jpg', 'images/cat1.png'])
imshow_collection(ic)
# <Figure size 640x480 with 4 Axes>
show()

边栏推荐
- The hook of the operation of the selenium module
- config.js相关配置汇总
- Browser Storage for H5
- By solving these three problems, the operation and maintenance efficiency will exceed 90% of the hospital
- NB-IOT智能云家具项目系列实站
- Successful indie developers deal with failure & imposters
- Quick question and quick answer - FAQ of Tencent Cloud Server
- Operation and maintenance engineer, come and pick up the wool
- Media query, rem mobile terminal adaptation
- Wireshark packet capture and common filtering methods
猜你喜欢
随机推荐
Will intelligent operation and maintenance replace manual operation and maintenance?
LeetCode practice and self-comprehension record (1)
多行文本省略
H5 的浏览器存储
ROS2下使用ROS1 bag的方法
Mina disconnects and reconnects
Cocos Creator Mini Game Case "Stick Soldier"
Insight into the general trend of the Internet, after reading this article, you will have a thorough understanding of Chinese domain names
Mina's long and short connections
产品学习资料
Detailed explanation of ten solutions across domains (summary)
Programmers should understand I/O this way
摆脱极域软件的限制
Come, come, let you understand how Cocos Creator reads and writes JSON files
Alibaba Cloud Video on Demand
What impact does CIPU have on the cloud computing industry?
网络层协议介绍
Transformer详细解读与预测实例记录
reduce()方法的学习和整理
wc, grep, tar, vi/vim








