skimage.io._plugins.available([loaded]) | List available plugins. |
skimage.io._plugins.call(kind, *args, **kwargs) | Find the appropriate plugin of ‘kind’ and execute it. |
skimage.io._plugins.configuration() | Return the currently preferred plugin order. |
skimage.io._plugins.info(plugin) | Return plugin meta-data. |
skimage.io._plugins.reset_plugins() | Clear the plugin state to the default, i.e., where no plugins are loaded |
skimage.io._plugins.use(name[, kind]) | Set the default plugin for a specified operation. |
List available plugins.
Parameters : | loaded : bool
|
---|---|
Returns : | p : dict
|
Find the appropriate plugin of ‘kind’ and execute it.
Parameters : | kind : {‘imshow’, ‘imsave’, ‘imread’, ‘imread_collection’}
plugin : str, optional
*args, **kwargs : arguments and keyword arguments
|
---|
Return the currently preferred plugin order.
Returns : | p : dict
|
---|
Return plugin meta-data.
Parameters : | plugin : str
|
---|---|
Returns : | m : dict
|
Clear the plugin state to the default, i.e., where no plugins are loaded
Set the default plugin for a specified operation. The plugin will be loaded if it hasn’t been already.
Parameters : | name : str
kind : {‘imsave’, ‘imread’, ‘imshow’, ‘imread_collection’}, optional
|
---|
See also
Examples
Use the Python Imaging Library to read images:
>>> from skimage.io import use_plugin
>>> use_plugin('pil', 'imread')