├── .gitattributes ├── .github └── workflows │ ├── PyPI.yml │ └── package-tests.yml ├── .gitignore ├── .travis.yml ├── Augmentor ├── ImageSource.py ├── ImageUtilities.py ├── Operations.py ├── Pipeline.py └── __init__.py ├── CONTRIBUTING.md ├── DESCRIPTION.rst ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── binder ├── environment.yml └── postBuild ├── docs ├── Makefile ├── code.bak ├── code.rst ├── conf.py ├── index.rst ├── joss │ ├── paper.bib │ └── paper.md ├── licence.rst ├── logo.ico ├── logo.png ├── make.bat └── userguide │ ├── examples.rst │ ├── extend.rst │ ├── install.rst │ ├── mainfeatures.rst │ └── usage.rst ├── notebooks ├── Augmentor_Keras.ipynb ├── Augmentor_Keras_Array_Data.ipynb ├── Augmentor_Keras_DataFrame.ipynb ├── Multiple-Mask-Augmentation.ipynb └── Per_Class_Augmentation_Strategy.ipynb ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── test_array_fuctions.py ├── test_custom_operations.py ├── test_datapipeline.py ├── test_distortion.py ├── test_gaussian.py ├── test_generators.py ├── test_ground_truth_augmentation.py ├── test_ground_truth_by_class.py ├── test_load.py ├── test_multi_threading.py ├── test_pipeline_add_operations.py ├── test_pipeline_utilities.py ├── test_random_color_brightness_contrast.py ├── test_resize.py ├── test_rotate.py ├── test_torch_transform.py ├── test_user_operation_parameter_input.py └── util_funcs.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.github/workflows/PyPI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/.github/workflows/PyPI.yml -------------------------------------------------------------------------------- /.github/workflows/package-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/.github/workflows/package-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/.travis.yml -------------------------------------------------------------------------------- /Augmentor/ImageSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/Augmentor/ImageSource.py -------------------------------------------------------------------------------- /Augmentor/ImageUtilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/Augmentor/ImageUtilities.py -------------------------------------------------------------------------------- /Augmentor/Operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/Augmentor/Operations.py -------------------------------------------------------------------------------- /Augmentor/Pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/Augmentor/Pipeline.py -------------------------------------------------------------------------------- /Augmentor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/Augmentor/__init__.py -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/README.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- 1 | pip install . 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/code.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/code.bak -------------------------------------------------------------------------------- /docs/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/code.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/joss/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/joss/paper.bib -------------------------------------------------------------------------------- /docs/joss/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/joss/paper.md -------------------------------------------------------------------------------- /docs/licence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/licence.rst -------------------------------------------------------------------------------- /docs/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/logo.ico -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/userguide/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/userguide/examples.rst -------------------------------------------------------------------------------- /docs/userguide/extend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/userguide/extend.rst -------------------------------------------------------------------------------- /docs/userguide/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/userguide/install.rst -------------------------------------------------------------------------------- /docs/userguide/mainfeatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/userguide/mainfeatures.rst -------------------------------------------------------------------------------- /docs/userguide/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/docs/userguide/usage.rst -------------------------------------------------------------------------------- /notebooks/Augmentor_Keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/notebooks/Augmentor_Keras.ipynb -------------------------------------------------------------------------------- /notebooks/Augmentor_Keras_Array_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/notebooks/Augmentor_Keras_Array_Data.ipynb -------------------------------------------------------------------------------- /notebooks/Augmentor_Keras_DataFrame.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/notebooks/Augmentor_Keras_DataFrame.ipynb -------------------------------------------------------------------------------- /notebooks/Multiple-Mask-Augmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/notebooks/Multiple-Mask-Augmentation.ipynb -------------------------------------------------------------------------------- /notebooks/Per_Class_Augmentation_Strategy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/notebooks/Per_Class_Augmentation_Strategy.ipynb -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | tqdm 3 | numpy 4 | pytest 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | tqdm 3 | numpy -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | license_file = LICENSE.md 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_array_fuctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_array_fuctions.py -------------------------------------------------------------------------------- /tests/test_custom_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_custom_operations.py -------------------------------------------------------------------------------- /tests/test_datapipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_datapipeline.py -------------------------------------------------------------------------------- /tests/test_distortion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_distortion.py -------------------------------------------------------------------------------- /tests/test_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_gaussian.py -------------------------------------------------------------------------------- /tests/test_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_generators.py -------------------------------------------------------------------------------- /tests/test_ground_truth_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_ground_truth_augmentation.py -------------------------------------------------------------------------------- /tests/test_ground_truth_by_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_ground_truth_by_class.py -------------------------------------------------------------------------------- /tests/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_load.py -------------------------------------------------------------------------------- /tests/test_multi_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_multi_threading.py -------------------------------------------------------------------------------- /tests/test_pipeline_add_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_pipeline_add_operations.py -------------------------------------------------------------------------------- /tests/test_pipeline_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_pipeline_utilities.py -------------------------------------------------------------------------------- /tests/test_random_color_brightness_contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_random_color_brightness_contrast.py -------------------------------------------------------------------------------- /tests/test_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_resize.py -------------------------------------------------------------------------------- /tests/test_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_rotate.py -------------------------------------------------------------------------------- /tests/test_torch_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_torch_transform.py -------------------------------------------------------------------------------- /tests/test_user_operation_parameter_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/test_user_operation_parameter_input.py -------------------------------------------------------------------------------- /tests/util_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Augmentor/HEAD/tests/util_funcs.py --------------------------------------------------------------------------------