├── .gitignore ├── .pylintrc ├── Assets ├── Microsoft-logo_rgb_c-gray.png └── sample_screenshot.png ├── CONTRIBUTING.md ├── LICENSE-IMAGE.md ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── ThirdPartyNotices.txt ├── cognitive_face ├── __init__.py ├── face.py ├── face_list.py ├── large_face_list.py ├── large_face_list_face.py ├── large_person_group.py ├── large_person_group_person.py ├── large_person_group_person_face.py ├── person.py ├── person_group.py ├── tests │ ├── __init__.py │ ├── config.sample.py │ ├── test_face.py │ ├── test_face_list.py │ ├── test_large_face_list.py │ ├── test_large_face_list_face.py │ ├── test_large_person_group.py │ ├── test_large_person_group_person.py │ ├── test_large_person_group_person_face.py │ ├── test_person.py │ ├── test_person_group.py │ └── util.py └── util.py ├── requirements.txt ├── sample ├── __main__.py ├── model │ ├── __init__.py │ └── face.py ├── util.py └── view │ ├── __init__.py │ ├── base.py │ ├── panel_detection.py │ ├── panel_find_similar.py │ ├── panel_group.py │ ├── panel_identification.py │ ├── panel_subscription.py │ └── panel_verification.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/.pylintrc -------------------------------------------------------------------------------- /Assets/Microsoft-logo_rgb_c-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/Assets/Microsoft-logo_rgb_c-gray.png -------------------------------------------------------------------------------- /Assets/sample_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/Assets/sample_screenshot.png -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-IMAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/LICENSE-IMAGE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/README.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /cognitive_face/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/__init__.py -------------------------------------------------------------------------------- /cognitive_face/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/face.py -------------------------------------------------------------------------------- /cognitive_face/face_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/face_list.py -------------------------------------------------------------------------------- /cognitive_face/large_face_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/large_face_list.py -------------------------------------------------------------------------------- /cognitive_face/large_face_list_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/large_face_list_face.py -------------------------------------------------------------------------------- /cognitive_face/large_person_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/large_person_group.py -------------------------------------------------------------------------------- /cognitive_face/large_person_group_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/large_person_group_person.py -------------------------------------------------------------------------------- /cognitive_face/large_person_group_person_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/large_person_group_person_face.py -------------------------------------------------------------------------------- /cognitive_face/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/person.py -------------------------------------------------------------------------------- /cognitive_face/person_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/person_group.py -------------------------------------------------------------------------------- /cognitive_face/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/__init__.py -------------------------------------------------------------------------------- /cognitive_face/tests/config.sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/config.sample.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_face.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_face_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_face_list.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_large_face_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_large_face_list.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_large_face_list_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_large_face_list_face.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_large_person_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_large_person_group.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_large_person_group_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_large_person_group_person.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_large_person_group_person_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_large_person_group_person_face.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_person.py -------------------------------------------------------------------------------- /cognitive_face/tests/test_person_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/test_person_group.py -------------------------------------------------------------------------------- /cognitive_face/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/tests/util.py -------------------------------------------------------------------------------- /cognitive_face/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/cognitive_face/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pep8 2 | pillow 3 | pyflakes 4 | pylint 5 | requests 6 | wxpython 7 | -------------------------------------------------------------------------------- /sample/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/__main__.py -------------------------------------------------------------------------------- /sample/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/model/__init__.py -------------------------------------------------------------------------------- /sample/model/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/model/face.py -------------------------------------------------------------------------------- /sample/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/util.py -------------------------------------------------------------------------------- /sample/view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/__init__.py -------------------------------------------------------------------------------- /sample/view/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/base.py -------------------------------------------------------------------------------- /sample/view/panel_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/panel_detection.py -------------------------------------------------------------------------------- /sample/view/panel_find_similar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/panel_find_similar.py -------------------------------------------------------------------------------- /sample/view/panel_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/panel_group.py -------------------------------------------------------------------------------- /sample/view/panel_identification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/panel_identification.py -------------------------------------------------------------------------------- /sample/view/panel_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/panel_subscription.py -------------------------------------------------------------------------------- /sample/view/panel_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/sample/view/panel_verification.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [nosetests] 2 | exe=1 3 | verbosity=2 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Face-Python/HEAD/setup.py --------------------------------------------------------------------------------