用法:
skimage.io.use_plugin(name, kind=None)
为指定操作设置默认插件。如果尚未加载该插件,它将被加载。
- name:str
插件的名称。
- kind:{‘imsave’, ‘imread’, ‘imshow’, ‘imread_collection’, ‘imshow_collection’},可选
设置此函数的插件。默认情况下,插件设置为所有函数。
参数:
例子:
要将 Matplotlib 用作默认图像阅读器,您可以编写:
>>> from skimage import io >>> io.use_plugin('matplotlib', 'imread')
要查看可用插件的列表,请运行
io.available_plugins
。请注意,这列出了已定义的插件,但如果您的系统没有安装所需的库,则完整列表可能不可用。
相关用法
- Python skimage.io.MultiImage用法及代码示例
- Python skimage.io.ImageCollection用法及代码示例
- Python skimage.io.show用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
- Python skimage.feature.blob_dog用法及代码示例
- Python skimage.filters.unsharp_mask用法及代码示例
- Python skimage.registration.optical_flow_tvl1用法及代码示例
- Python skimage.filters.rank.noise_filter用法及代码示例
- Python skimage.exposure.histogram用法及代码示例
- Python skimage.filters.gaussian用法及代码示例
- Python skimage.feature.graycoprops用法及代码示例
- Python skimage.segmentation.active_contour用法及代码示例
- Python skimage.feature.corner_orientations用法及代码示例
- Python skimage.exposure.adjust_gamma用法及代码示例
- Python skimage.morphology.h_minima用法及代码示例
- Python skimage.filters.threshold_otsu用法及代码示例
- Python skimage.feature.structure_tensor用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.io.use_plugin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。