 |
Face SDK
1.7 Mozart rc
Face Recognition Software Development Kit
|
1 #ifndef FACE_SDK_ICAO_VERIFIER_H
2 #define FACE_SDK_ICAO_VERIFIER_H
32 typedef std::vector<icao_check_result> icao_check_result_set;
49 virtual icao_check_result_set
check_faces(
const face_set &faces) = 0;
53 virtual bool is_compatible(uint32_t detector_version)
const = 0;
68 const std::shared_ptr<face_sdk::license> &
license,
69 const std::shared_ptr<face_sdk::data_container> &contaner,
71 int32_t compute_device);
84 const std::shared_ptr<face_sdk::license> &
license,
86 int32_t compute_device);
100 int32_t compute_device);
float glass
value can be [0...1], where 0 means there is no glasses and 1 means there is glasses (algorithm detec...
Definition: icao_verifier.h:26
std::shared_ptr< icao_verifier > FACE_SDK_EXPORT make_icao_verifier(uint32_t version, uint32_t batch_size, int32_t compute_device)
Makes the face_sdk::icao_verifier object with needed version, batch size and compute device.
float smile
value can be [0...1], where 0 means there is no smile and 1 means there is a smile.
Definition: icao_verifier.h:27
The license object. A license object provide information about your limits in face_sdk....
Definition: license.h:23
float blur
value can be [0...1], where 0 is sharp image and 1 is blured.
Definition: icao_verifier.h:23
Quality checker algorithm. Calculates quality of the given face_set.
Definition: icao_verifier.h:38
float closed_eyes
value can be [0...1], where 0 means the eyes are open and 1 means the eyes are closed.
Definition: icao_verifier.h:29
float occlusion
value can be [0...1], where 0 means the face is normal and not occluded with anything and 1 means the...
Definition: icao_verifier.h:28
virtual icao_check_result_set check_faces(const face_set &faces)=0
The function calculates images quality of the given face_set.
float overexposure
value can be [0...1], where 0 means no overexposure and 1 means all overexposured.
Definition: icao_verifier.h:24
float rotation
value can be [0...1], where 0 means the face is frontal and 1 means it is rotated 30 degrees or more ...
Definition: icao_verifier.h:25
virtual bool is_compatible(uint32_t detector_version) const =0
Function helps to you determine Quality and Face Detector algorithms versions compatibility....
Contains information about quality of the image.
Definition: icao_verifier.h:21