├── .gitignore ├── 256x256x3 ├── 3x256x256 ├── LICENSE.txt ├── README.md ├── README ├── 01.jpg ├── 02.jpg ├── 03.jpg ├── 04.jpg ├── 05.jpg ├── 06.jpg └── 07.jpg ├── _test_get_cossim.py ├── _test_get_gist.py ├── img_gist_feature ├── .idea │ ├── .gitignore │ ├── img_gist_feature.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── util__base.py ├── util__cal.py ├── util__img.py ├── util__thread_pool.py └── utils_gist.py ├── setup.cfg ├── setup.py └── test ├── A.jpg ├── B.jpg └── show.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc -------------------------------------------------------------------------------- /256x256x3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3x256x256: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README.md -------------------------------------------------------------------------------- /README/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README/01.jpg -------------------------------------------------------------------------------- /README/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README/02.jpg -------------------------------------------------------------------------------- /README/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README/03.jpg -------------------------------------------------------------------------------- /README/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README/04.jpg -------------------------------------------------------------------------------- /README/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README/05.jpg -------------------------------------------------------------------------------- /README/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README/06.jpg -------------------------------------------------------------------------------- /README/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/README/07.jpg -------------------------------------------------------------------------------- /_test_get_cossim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/_test_get_cossim.py -------------------------------------------------------------------------------- /_test_get_gist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/_test_get_gist.py -------------------------------------------------------------------------------- /img_gist_feature/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/.idea/.gitignore -------------------------------------------------------------------------------- /img_gist_feature/.idea/img_gist_feature.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/.idea/img_gist_feature.iml -------------------------------------------------------------------------------- /img_gist_feature/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /img_gist_feature/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/.idea/misc.xml -------------------------------------------------------------------------------- /img_gist_feature/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/.idea/modules.xml -------------------------------------------------------------------------------- /img_gist_feature/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/.idea/vcs.xml -------------------------------------------------------------------------------- /img_gist_feature/util__base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/util__base.py -------------------------------------------------------------------------------- /img_gist_feature/util__cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/util__cal.py -------------------------------------------------------------------------------- /img_gist_feature/util__img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/util__img.py -------------------------------------------------------------------------------- /img_gist_feature/util__thread_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/util__thread_pool.py -------------------------------------------------------------------------------- /img_gist_feature/utils_gist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/img_gist_feature/utils_gist.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/setup.py -------------------------------------------------------------------------------- /test/A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/test/A.jpg -------------------------------------------------------------------------------- /test/B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/test/B.jpg -------------------------------------------------------------------------------- /test/show.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yumeka999/python-img_gist_feature/HEAD/test/show.jpg --------------------------------------------------------------------------------