Perception 0.7.0__cp310-cp310-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- perception/__init__.py +3 -0
- perception/_version.py +716 -0
- perception/benchmarking/__init__.py +0 -0
- perception/benchmarking/common.py +649 -0
- perception/benchmarking/extensions.c +30654 -0
- perception/benchmarking/extensions.cp310-win_amd64.pyd +0 -0
- perception/benchmarking/extensions.pyx +114 -0
- perception/benchmarking/image.py +202 -0
- perception/benchmarking/image_transforms.py +42 -0
- perception/benchmarking/video.py +224 -0
- perception/benchmarking/video_transforms.py +200 -0
- perception/experimental/__init__.py +0 -0
- perception/experimental/ann/__init__.py +0 -0
- perception/experimental/ann/index.py +430 -0
- perception/experimental/ann/serve.py +152 -0
- perception/experimental/approximate_deduplication.py +288 -0
- perception/experimental/debug.py +206 -0
- perception/experimental/local_descriptor_deduplication.py +711 -0
- perception/extensions.cp310-win_amd64.pyd +0 -0
- perception/extensions.cpp +33104 -0
- perception/extensions.pyx +307 -0
- perception/hashers/__init__.py +27 -0
- perception/hashers/hasher.py +406 -0
- perception/hashers/image/__init__.py +17 -0
- perception/hashers/image/average.py +35 -0
- perception/hashers/image/dhash.py +30 -0
- perception/hashers/image/opencv.py +63 -0
- perception/hashers/image/pdq.py +34 -0
- perception/hashers/image/phash.py +109 -0
- perception/hashers/image/wavelet.py +59 -0
- perception/hashers/tools.py +1075 -0
- perception/hashers/video/__init__.py +5 -0
- perception/hashers/video/framewise.py +106 -0
- perception/hashers/video/scenes.py +241 -0
- perception/hashers/video/tmk.py +210 -0
- perception/py.typed +0 -0
- perception/testing/__init__.py +243 -0
- perception/testing/images/README.md +13 -0
- perception/testing/images/image1.jpg +0 -0
- perception/testing/images/image10.jpg +0 -0
- perception/testing/images/image2.jpg +0 -0
- perception/testing/images/image3.jpg +0 -0
- perception/testing/images/image4.jpg +0 -0
- perception/testing/images/image5.jpg +0 -0
- perception/testing/images/image6.jpg +0 -0
- perception/testing/images/image7.jpg +0 -0
- perception/testing/images/image8.jpg +0 -0
- perception/testing/images/image9.jpg +0 -0
- perception/testing/logos/README.md +4 -0
- perception/testing/logos/logoipsum.png +0 -0
- perception/testing/videos/README.md +6 -0
- perception/testing/videos/rgb.m4v +0 -0
- perception/testing/videos/v1.m4v +0 -0
- perception/testing/videos/v2.m4v +0 -0
- perception/testing/videos/v2s.mov +0 -0
- perception/tools.py +387 -0
- perception/utils.py +2 -0
- perception-0.7.0.dist-info/LICENSE +191 -0
- perception-0.7.0.dist-info/METADATA +119 -0
- perception-0.7.0.dist-info/RECORD +67 -0
- perception-0.7.0.dist-info/WHEEL +4 -0
- tests/__init__.py +0 -0
- tests/test_benchmarking.py +210 -0
- tests/test_experimental.py +295 -0
- tests/test_hashers.py +317 -0
- tests/test_tmk.py +59 -0
- tests/test_tools.py +243 -0
perception/__init__.py
ADDED