loongson/pypi/: imageio-2.5.0 metadata and description

Homepage Simple index Newer version available

Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.

author imageio contributors
author_email almar.klein@gmail.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Science/Research
  • Intended Audience :: Education
  • Intended Audience :: Developers
  • License :: OSI Approved :: BSD License
  • Operating System :: MacOS :: MacOS X
  • Operating System :: Microsoft :: Windows
  • Operating System :: POSIX
  • Programming Language :: Python
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.4
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
download_url http://pypi.python.org/pypi/imageio
keywords image video volume imread imwrite io animation ffmpeg
license (new) BSD
platform
  • any
provides
  • imageio
provides_extras itk
requires_dist
  • numpy
  • pillow
  • imageio-ffmpeg ; extra == 'ffmpeg'
  • astropy ; extra == 'fits'
  • astropy ; extra == 'full'
  • gdal ; extra == 'full'
  • imageio-ffmpeg ; extra == 'full'
  • itk ; extra == 'full'
  • gdal ; extra == 'gdal'
  • itk ; extra == 'itk'
requires_python >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
imageio-2.5.0-py3-none-any.whl
Size
3 MB
Type
Python Wheel
Python
3
https://travis-ci.org/imageio/imageio.svg?branch=master https://coveralls.io/repos/imageio/imageio/badge.png?branch=master

Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, volumetric data, and scientific formats. It is cross-platform, runs on Python 2.7 and 3.4+, and is easy to install.

Main website: http://imageio.github.io

Release notes: http://imageio.readthedocs.io/en/latest/releasenotes.html

Example:

>>> import imageio
>>> im = imageio.imread('imageio:astronaut.png')
>>> im.shape  # im is a numpy array
(512, 512, 3)
>>> imageio.imwrite('astronaut-gray.jpg', im[:, :, 0])

See the user API or examples for more information.