Module: io
Utilities to read and write images in various formats.
The following plug-ins are available:
| Plugin | Description |
| pil | Image reading via the Python Imaging Library |
| qt | Fast image display using the Qt library |
| freeimage | Load images using the FreeImage library |
| gtk | Fast image display using the GTK library |
| matplotlib | Display or save images using Matplotlib |
| simpleitk | Image reading and writing via SimpleITK |
| imread | Image reading and writing via imread |
| imageio | Image reading via the ImageIO Library |
| fits | FITS image reading via PyFITS |
| tifffile | Load and save TIFF and TIFF-based images using tifffile.py |
| gdal | Image reading via the GDAL Library (www.gdal.org) |
skimage.io.call_plugin(kind, *args, **kwargs) | Find the appropriate plugin of ‘kind’ and execute it. |
skimage.io.concatenate_images(ic) | Concatenate all images in the image collection into an array. |
skimage.io.find_available_plugins([loaded]) | List available plugins. |
skimage.io.imread(fname[, as_grey, plugin, ...]) | Load an image from file. |
skimage.io.imread_collection(load_pattern[, ...]) | Load a collection of images. |
skimage.io.imread_collection_wrapper(imread) | |
skimage.io.imsave(fname, arr[, plugin]) | Save an image to file. |
skimage.io.imshow(arr[, plugin]) | Display an image. |
skimage.io.imshow_collection(ic[, plugin]) | Display a collection of images. |
skimage.io.load_sift(f) | Read SIFT or SURF features from a file. |
skimage.io.load_surf(f) | Read SIFT or SURF features from a file. |
skimage.io.plugin_info(plugin) | Return plugin meta-data. |
skimage.io.plugin_order() | Return the currently preferred plugin order. |
skimage.io.pop() | Pop an image from the shared image stack. |
skimage.io.push(img) | Push an image onto the shared image stack. |
skimage.io.reset_plugins() | |
skimage.io.show() | Display pending images. |
skimage.io.use_plugin(name[, kind]) | Set the default plugin for a specified operation. |
skimage.io.ImageCollection(load_pattern[, ...]) | Load and manage a collection of image files. |
skimage.io.MultiImage(filename[, ...]) | A class containing a single multi-frame image. |
Please login to continue.