├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── LICENSE ├── README.md ├── cat.jpg ├── conftest.py ├── cvtorchvision ├── __init__.py └── cvtransforms │ ├── __init__.py │ ├── cvfunctional.py │ └── cvtransforms.py ├── requirements.txt └── tests └── test_package.py /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/README.md -------------------------------------------------------------------------------- /cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/cat.jpg -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cvtorchvision/__init__.py: -------------------------------------------------------------------------------- 1 | from . import cvtransforms -------------------------------------------------------------------------------- /cvtorchvision/cvtransforms/__init__.py: -------------------------------------------------------------------------------- 1 | from .cvtransforms import * -------------------------------------------------------------------------------- /cvtorchvision/cvtransforms/cvfunctional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/cvtorchvision/cvtransforms/cvfunctional.py -------------------------------------------------------------------------------- /cvtorchvision/cvtransforms/cvtransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/cvtorchvision/cvtransforms/cvtransforms.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hityzy1122/opencv_transforms_torchvision/HEAD/tests/test_package.py --------------------------------------------------------------------------------