├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── cla.yml ├── .gitignore ├── CLA.md ├── LICENSE ├── README.md ├── compreface ├── __init__.py ├── client │ ├── __init__.py │ ├── add_example_of_subject.py │ ├── delete_example_by_id.py │ ├── detect_face_from_image.py │ ├── recognize_face_from_image.py │ ├── subject_client.py │ ├── verification_face_from_image.py │ └── verify_face_from_image.py ├── collections │ ├── __init__.py │ └── face_collections.py ├── common │ ├── __init__.py │ ├── client.py │ ├── multipart_constructor.py │ ├── service.py │ └── typed_dict.py ├── config │ ├── __init__.py │ └── api_list.py ├── core │ ├── __init__.py │ └── model.py ├── exceptions │ ├── __init__.py │ └── field_exception.py ├── service │ ├── __init__.py │ ├── detection_service.py │ ├── recognition_service.py │ └── verification_service.py └── use_cases │ ├── __init__.py │ ├── add_example_of_subject.py │ ├── add_subject.py │ ├── delete_all_examples_of_subject_by_name.py │ ├── delete_all_subjects.py │ ├── delete_example_by_id.py │ ├── delete_subject_by_name.py │ ├── detect_face_from_image.py │ ├── get_subjects.py │ ├── list_of_all_saved_subjects.py │ ├── recognize_face_from_image.py │ ├── update_subject.py │ ├── verification_face_from_image.py │ └── verifiy_face_from_images.py ├── examples ├── add_example_of_a_subject.py ├── add_subject.py ├── common │ └── jonathan-petit-unsplash.jpg ├── delete_all_examples_of_subject.py ├── delete_all_subjects.py ├── delete_example_by_id.py ├── delete_subject_by_name.py ├── detect_face_from_image.py ├── get_list_of_all_subjects.py ├── recognize_face_from_image.py ├── update_existing_subject.py ├── verification_face_from_image.py └── verify_face_from_image.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── client │ ├── __init__.py │ ├── const_config.py │ ├── test_add_example_of_subject_client.py │ ├── test_delete_example_by_id_client.py │ ├── test_detect_face_from_image.py │ ├── test_recognize_face_from_image.py │ ├── test_subject_crud_client.py │ ├── test_verification_face_from_image.py │ └── test_verify_face_from_image.py └── common │ └── jonathan-petit-unsplash.jpg ├── tox.ini └── webcam_demo ├── README.md ├── compreface_webcam_detection_demo.py └── compreface_webcam_recognition_demo.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/CLA.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /compreface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/__init__.py -------------------------------------------------------------------------------- /compreface/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/__init__.py -------------------------------------------------------------------------------- /compreface/client/add_example_of_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/add_example_of_subject.py -------------------------------------------------------------------------------- /compreface/client/delete_example_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/delete_example_by_id.py -------------------------------------------------------------------------------- /compreface/client/detect_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/detect_face_from_image.py -------------------------------------------------------------------------------- /compreface/client/recognize_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/recognize_face_from_image.py -------------------------------------------------------------------------------- /compreface/client/subject_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/subject_client.py -------------------------------------------------------------------------------- /compreface/client/verification_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/verification_face_from_image.py -------------------------------------------------------------------------------- /compreface/client/verify_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/client/verify_face_from_image.py -------------------------------------------------------------------------------- /compreface/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/collections/__init__.py -------------------------------------------------------------------------------- /compreface/collections/face_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/collections/face_collections.py -------------------------------------------------------------------------------- /compreface/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/common/__init__.py -------------------------------------------------------------------------------- /compreface/common/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/common/client.py -------------------------------------------------------------------------------- /compreface/common/multipart_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/common/multipart_constructor.py -------------------------------------------------------------------------------- /compreface/common/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/common/service.py -------------------------------------------------------------------------------- /compreface/common/typed_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/common/typed_dict.py -------------------------------------------------------------------------------- /compreface/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/config/__init__.py -------------------------------------------------------------------------------- /compreface/config/api_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/config/api_list.py -------------------------------------------------------------------------------- /compreface/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/core/__init__.py -------------------------------------------------------------------------------- /compreface/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/core/model.py -------------------------------------------------------------------------------- /compreface/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/exceptions/__init__.py -------------------------------------------------------------------------------- /compreface/exceptions/field_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/exceptions/field_exception.py -------------------------------------------------------------------------------- /compreface/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/service/__init__.py -------------------------------------------------------------------------------- /compreface/service/detection_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/service/detection_service.py -------------------------------------------------------------------------------- /compreface/service/recognition_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/service/recognition_service.py -------------------------------------------------------------------------------- /compreface/service/verification_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/service/verification_service.py -------------------------------------------------------------------------------- /compreface/use_cases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/__init__.py -------------------------------------------------------------------------------- /compreface/use_cases/add_example_of_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/add_example_of_subject.py -------------------------------------------------------------------------------- /compreface/use_cases/add_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/add_subject.py -------------------------------------------------------------------------------- /compreface/use_cases/delete_all_examples_of_subject_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/delete_all_examples_of_subject_by_name.py -------------------------------------------------------------------------------- /compreface/use_cases/delete_all_subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/delete_all_subjects.py -------------------------------------------------------------------------------- /compreface/use_cases/delete_example_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/delete_example_by_id.py -------------------------------------------------------------------------------- /compreface/use_cases/delete_subject_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/delete_subject_by_name.py -------------------------------------------------------------------------------- /compreface/use_cases/detect_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/detect_face_from_image.py -------------------------------------------------------------------------------- /compreface/use_cases/get_subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/get_subjects.py -------------------------------------------------------------------------------- /compreface/use_cases/list_of_all_saved_subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/list_of_all_saved_subjects.py -------------------------------------------------------------------------------- /compreface/use_cases/recognize_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/recognize_face_from_image.py -------------------------------------------------------------------------------- /compreface/use_cases/update_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/update_subject.py -------------------------------------------------------------------------------- /compreface/use_cases/verification_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/verification_face_from_image.py -------------------------------------------------------------------------------- /compreface/use_cases/verifiy_face_from_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/compreface/use_cases/verifiy_face_from_images.py -------------------------------------------------------------------------------- /examples/add_example_of_a_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/add_example_of_a_subject.py -------------------------------------------------------------------------------- /examples/add_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/add_subject.py -------------------------------------------------------------------------------- /examples/common/jonathan-petit-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/common/jonathan-petit-unsplash.jpg -------------------------------------------------------------------------------- /examples/delete_all_examples_of_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/delete_all_examples_of_subject.py -------------------------------------------------------------------------------- /examples/delete_all_subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/delete_all_subjects.py -------------------------------------------------------------------------------- /examples/delete_example_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/delete_example_by_id.py -------------------------------------------------------------------------------- /examples/delete_subject_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/delete_subject_by_name.py -------------------------------------------------------------------------------- /examples/detect_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/detect_face_from_image.py -------------------------------------------------------------------------------- /examples/get_list_of_all_subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/get_list_of_all_subjects.py -------------------------------------------------------------------------------- /examples/recognize_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/recognize_face_from_image.py -------------------------------------------------------------------------------- /examples/update_existing_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/update_existing_subject.py -------------------------------------------------------------------------------- /examples/verification_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/verification_face_from_image.py -------------------------------------------------------------------------------- /examples/verify_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/examples/verify_face_from_image.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/__init__.py -------------------------------------------------------------------------------- /tests/client/const_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/const_config.py -------------------------------------------------------------------------------- /tests/client/test_add_example_of_subject_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/test_add_example_of_subject_client.py -------------------------------------------------------------------------------- /tests/client/test_delete_example_by_id_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/test_delete_example_by_id_client.py -------------------------------------------------------------------------------- /tests/client/test_detect_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/test_detect_face_from_image.py -------------------------------------------------------------------------------- /tests/client/test_recognize_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/test_recognize_face_from_image.py -------------------------------------------------------------------------------- /tests/client/test_subject_crud_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/test_subject_crud_client.py -------------------------------------------------------------------------------- /tests/client/test_verification_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/test_verification_face_from_image.py -------------------------------------------------------------------------------- /tests/client/test_verify_face_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/client/test_verify_face_from_image.py -------------------------------------------------------------------------------- /tests/common/jonathan-petit-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/tests/common/jonathan-petit-unsplash.jpg -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webcam_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/webcam_demo/README.md -------------------------------------------------------------------------------- /webcam_demo/compreface_webcam_detection_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/webcam_demo/compreface_webcam_detection_demo.py -------------------------------------------------------------------------------- /webcam_demo/compreface_webcam_recognition_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/compreface-python-sdk/HEAD/webcam_demo/compreface_webcam_recognition_demo.py --------------------------------------------------------------------------------