__init__.py 556 B

123456789101112131415
  1. """Imports for package imgaug."""
  2. from __future__ import absolute_import
  3. # this contains some deprecated classes/functions pointing to the new
  4. # classes/functions, hence always place the other imports below this so that
  5. # the deprecated stuff gets overwritten as much as possible
  6. from imgaug.imgaug import * # pylint: disable=redefined-builtin
  7. import imgaug.augmentables as augmentables
  8. from imgaug.augmentables import *
  9. import imgaug.augmenters as augmenters
  10. import imgaug.parameters as parameters
  11. import imgaug.dtypes as dtypes
  12. __version__ = '0.4.0'