17 lines
583 B
Python
17 lines
583 B
Python
"""Imports for package imgaug."""
|
|
from __future__ import absolute_import
|
|
|
|
# this contains some deprecated classes/functions pointing to the new
|
|
# classes/functions, hence always place the other imports below this so that
|
|
# the deprecated stuff gets overwritten as much as possible
|
|
from imgaug.imgaug import * # pylint: disable=redefined-builtin
|
|
|
|
import imgaug.augmentables as augmentables
|
|
from imgaug.augmentables import *
|
|
import imgaug.augmenters as augmenters
|
|
import imgaug.parameters as parameters
|
|
import imgaug.dtypes as dtypes
|
|
import imgaug.data as data
|
|
|
|
__version__ = '0.4.0'
|