├── .gitignore ├── LICENSE ├── README.md ├── haar_pytorch ├── __init__.py └── transform2d.py ├── requirements.txt ├── resources └── haar.png ├── setup.cfg ├── setup.py └── tests └── test_transform2d.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /haar_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/haar_pytorch/__init__.py -------------------------------------------------------------------------------- /haar_pytorch/transform2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/haar_pytorch/transform2d.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | -------------------------------------------------------------------------------- /resources/haar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/resources/haar.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_transform2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/haar_pytorch/HEAD/tests/test_transform2d.py --------------------------------------------------------------------------------