├── .github └── workflows │ ├── pypi_deploy.yml │ ├── pypi_test.yml │ ├── python-publish.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── images └── samples.png ├── imax ├── __init__.py ├── color_transforms.py ├── project.py ├── randaugment.py └── transforms.py ├── setup.py ├── tests ├── run_tests.py ├── test.jpeg ├── test_color_transforms.py ├── test_transforms.py └── utils.py └── tox.ini /.github/workflows/pypi_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/.github/workflows/pypi_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pypi_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/.github/workflows/pypi_test.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/README.md -------------------------------------------------------------------------------- /images/samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/images/samples.png -------------------------------------------------------------------------------- /imax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imax/color_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/imax/color_transforms.py -------------------------------------------------------------------------------- /imax/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/imax/project.py -------------------------------------------------------------------------------- /imax/randaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/imax/randaugment.py -------------------------------------------------------------------------------- /imax/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/imax/transforms.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/setup.py -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/test.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/tests/test.jpeg -------------------------------------------------------------------------------- /tests/test_color_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/tests/test_color_transforms.py -------------------------------------------------------------------------------- /tests/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/tests/test_transforms.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4rtemi5/imax/HEAD/tox.ini --------------------------------------------------------------------------------