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.
Files changed (67) hide show
  1. perception/__init__.py +3 -0
  2. perception/_version.py +716 -0
  3. perception/benchmarking/__init__.py +0 -0
  4. perception/benchmarking/common.py +649 -0
  5. perception/benchmarking/extensions.c +30654 -0
  6. perception/benchmarking/extensions.cp310-win_amd64.pyd +0 -0
  7. perception/benchmarking/extensions.pyx +114 -0
  8. perception/benchmarking/image.py +202 -0
  9. perception/benchmarking/image_transforms.py +42 -0
  10. perception/benchmarking/video.py +224 -0
  11. perception/benchmarking/video_transforms.py +200 -0
  12. perception/experimental/__init__.py +0 -0
  13. perception/experimental/ann/__init__.py +0 -0
  14. perception/experimental/ann/index.py +430 -0
  15. perception/experimental/ann/serve.py +152 -0
  16. perception/experimental/approximate_deduplication.py +288 -0
  17. perception/experimental/debug.py +206 -0
  18. perception/experimental/local_descriptor_deduplication.py +711 -0
  19. perception/extensions.cp310-win_amd64.pyd +0 -0
  20. perception/extensions.cpp +33104 -0
  21. perception/extensions.pyx +307 -0
  22. perception/hashers/__init__.py +27 -0
  23. perception/hashers/hasher.py +406 -0
  24. perception/hashers/image/__init__.py +17 -0
  25. perception/hashers/image/average.py +35 -0
  26. perception/hashers/image/dhash.py +30 -0
  27. perception/hashers/image/opencv.py +63 -0
  28. perception/hashers/image/pdq.py +34 -0
  29. perception/hashers/image/phash.py +109 -0
  30. perception/hashers/image/wavelet.py +59 -0
  31. perception/hashers/tools.py +1075 -0
  32. perception/hashers/video/__init__.py +5 -0
  33. perception/hashers/video/framewise.py +106 -0
  34. perception/hashers/video/scenes.py +241 -0
  35. perception/hashers/video/tmk.py +210 -0
  36. perception/py.typed +0 -0
  37. perception/testing/__init__.py +243 -0
  38. perception/testing/images/README.md +13 -0
  39. perception/testing/images/image1.jpg +0 -0
  40. perception/testing/images/image10.jpg +0 -0
  41. perception/testing/images/image2.jpg +0 -0
  42. perception/testing/images/image3.jpg +0 -0
  43. perception/testing/images/image4.jpg +0 -0
  44. perception/testing/images/image5.jpg +0 -0
  45. perception/testing/images/image6.jpg +0 -0
  46. perception/testing/images/image7.jpg +0 -0
  47. perception/testing/images/image8.jpg +0 -0
  48. perception/testing/images/image9.jpg +0 -0
  49. perception/testing/logos/README.md +4 -0
  50. perception/testing/logos/logoipsum.png +0 -0
  51. perception/testing/videos/README.md +6 -0
  52. perception/testing/videos/rgb.m4v +0 -0
  53. perception/testing/videos/v1.m4v +0 -0
  54. perception/testing/videos/v2.m4v +0 -0
  55. perception/testing/videos/v2s.mov +0 -0
  56. perception/tools.py +387 -0
  57. perception/utils.py +2 -0
  58. perception-0.7.0.dist-info/LICENSE +191 -0
  59. perception-0.7.0.dist-info/METADATA +119 -0
  60. perception-0.7.0.dist-info/RECORD +67 -0
  61. perception-0.7.0.dist-info/WHEEL +4 -0
  62. tests/__init__.py +0 -0
  63. tests/test_benchmarking.py +210 -0
  64. tests/test_experimental.py +295 -0
  65. tests/test_hashers.py +317 -0
  66. tests/test_tmk.py +59 -0
  67. tests/test_tools.py +243 -0
perception/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ from . import _version
2
+
3
+ __version__ = _version.get_versions()["version"]