├── .gitignore ├── LICENSE ├── README.md ├── data ├── cat │ └── cat1.jpeg └── transform_cat.png ├── setup.cfg ├── setup.py ├── testransforms.py └── torchvideotransforms ├── __init__.py ├── functional.py ├── stack_transforms.py ├── tensor_transforms.py ├── utils ├── __init__.py ├── functional.py └── images.py ├── video_transforms.py └── volume_transforms.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/README.md -------------------------------------------------------------------------------- /data/cat/cat1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/data/cat/cat1.jpeg -------------------------------------------------------------------------------- /data/transform_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/data/transform_cat.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/setup.py -------------------------------------------------------------------------------- /testransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/testransforms.py -------------------------------------------------------------------------------- /torchvideotransforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torchvideotransforms/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/torchvideotransforms/functional.py -------------------------------------------------------------------------------- /torchvideotransforms/stack_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/torchvideotransforms/stack_transforms.py -------------------------------------------------------------------------------- /torchvideotransforms/tensor_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/torchvideotransforms/tensor_transforms.py -------------------------------------------------------------------------------- /torchvideotransforms/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torchvideotransforms/utils/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/torchvideotransforms/utils/functional.py -------------------------------------------------------------------------------- /torchvideotransforms/utils/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/torchvideotransforms/utils/images.py -------------------------------------------------------------------------------- /torchvideotransforms/video_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/torchvideotransforms/video_transforms.py -------------------------------------------------------------------------------- /torchvideotransforms/volume_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassony2/torch_videovision/HEAD/torchvideotransforms/volume_transforms.py --------------------------------------------------------------------------------