-
Notifications
You must be signed in to change notification settings - Fork 42
/
add_example_of_a_subject.py
39 lines (29 loc) · 1.31 KB
/
add_example_of_a_subject.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Copyright(c) 2021 the original author or authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https: // www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the License for the specific language governing
permissions and limitations under the License.
"""
from compreface.common.typed_dict import ExpandedOptionsDict
from compreface import CompreFace
from compreface.service import RecognitionService
from compreface.collections import FaceCollection
DOMAIN: str = 'http://localhost'
PORT: str = '8000'
RECOGNITION_API_KEY: str = '00000000-0000-0000-0000-000000000002'
compre_face: CompreFace = CompreFace(DOMAIN, PORT, {
"det_prob_threshold": 0.8
})
recognition: RecognitionService = compre_face.init_face_recognition(
RECOGNITION_API_KEY)
face_collection: FaceCollection = recognition.get_face_collection()
# Image from local path.
image: str = 'common/jonathan-petit-unsplash.jpg'
subject: str = 'Jonathan Petit'
print(face_collection.add(image, subject))