![]() |
Face SDK
1.13.0 Mozart release
Face Recognition Software Development Kit
|
Classes | |
struct | face_sdk__alignment_info |
Alignment info. Contains results of alignment. More... | |
Typedefs | |
typedef struct face_sdk__alignment_info | face_sdk__alignment_info_t |
Alignment info. Contains results of alignment. More... | |
Functions | |
bool | face_sdk__alignment_info__get_addr (const face_sdk__alignment_info_t *alignment_info, uint64_t *addr) |
Retrieves face_sdk__alignment_info_t object address * *. More... | |
bool | face_sdk__alignment_info__get_face (const face_sdk__alignment_info_t *alignment_info, face_sdk__face_t **face) |
Retrieves stored face object. More... | |
bool | face_sdk__alignment_info__get_version (const face_sdk__alignment_info_t *alignment_info, uint32_t *value) |
Retrieves version of the aligner's algorithm. More... | |
bool | face_sdk__alignment_info__get_aligned_image (const face_sdk__alignment_info_t *alignment_info, face_sdk__image_t **image) |
Retrieves stored aligned image. More... | |
bool | face_sdk__alignment_info__supports_face_exists (const face_sdk__alignment_info_t *alignment_info, bool *value) |
Retrieves face_exists feature availability. More... | |
bool | face_sdk__alignment_info__face_exists (const face_sdk__alignment_info_t *alignment_info, float *value) |
The probability that the face exists. The interpretation of the value depends on the Alignment version. More... | |
bool | face_sdk__alignment_info__has_affine_transform_matrix (const face_sdk__alignment_info_t *alignment_info, bool *value) |
Retrieves transform_matrix feature availability. More... | |
bool | face_sdk__alignment_info__get_affine_transform_matrix (const face_sdk__alignment_info_t *alignment_info, face_sdk__matrix_t **matrix) |
Retrieves matrix for affine transform. More... | |
void | face_sdk__alignment_info_free (face_sdk__alignment_info_t *alignment_info) |
Destroys face_sdk__alignment_info object. More... | |
typedef struct face_sdk__alignment_info face_sdk__alignment_info_t |
Alignment info. Contains results of alignment.
Alignment operation prepares images for further FIR building and age and gender classification. face_sdk__serializer allows to serialize and deserialize these objects.
bool face_sdk__alignment_info__face_exists | ( | const face_sdk__alignment_info_t * | alignment_info, |
float * | value | ||
) |
The probability that the face exists. The interpretation of the value depends on the Alignment version.
[in] | alignment_info | Alignment Info object |
[out] | value | Probability of face presence |
bool face_sdk__alignment_info__get_addr | ( | const face_sdk__alignment_info_t * | alignment_info, |
uint64_t * | addr | ||
) |
Retrieves face_sdk__alignment_info_t object address * *.
[in] | alignment_info | face_sdk__alignment_info_t object * |
[out] | addr | Object address * * |
bool face_sdk__alignment_info__get_affine_transform_matrix | ( | const face_sdk__alignment_info_t * | alignment_info, |
face_sdk__matrix_t ** | matrix | ||
) |
Retrieves matrix for affine transform.
[in] | alignment_info | Alignment Info object |
[out] | matrix | Transformation matrix |
bool face_sdk__alignment_info__get_aligned_image | ( | const face_sdk__alignment_info_t * | alignment_info, |
face_sdk__image_t ** | image | ||
) |
Retrieves stored aligned image.
[in] | alignment_info | Alignment Info object |
[out] | image | Aligned Image object |
bool face_sdk__alignment_info__get_face | ( | const face_sdk__alignment_info_t * | alignment_info, |
face_sdk__face_t ** | face | ||
) |
Retrieves stored face object.
[in] | alignment_info | Alignment Info object |
[out] | face | Face object |
bool face_sdk__alignment_info__get_version | ( | const face_sdk__alignment_info_t * | alignment_info, |
uint32_t * | value | ||
) |
Retrieves version of the aligner's algorithm.
[in] | alignment_info | Alignment Info object |
[out] | value | Algorithm version |
bool face_sdk__alignment_info__has_affine_transform_matrix | ( | const face_sdk__alignment_info_t * | alignment_info, |
bool * | value | ||
) |
Retrieves transform_matrix feature availability.
[in] | alignment_info | Alignment Info object |
[out] | value | True if face_sdk__alignment_info__get_affine_transform_matrix is supported, false if feature is not supported |
bool face_sdk__alignment_info__supports_face_exists | ( | const face_sdk__alignment_info_t * | alignment_info, |
bool * | value | ||
) |
Retrieves face_exists feature availability.
[in] | alignment_info | Alignment Info object |
[out] | value | True if face_sdk__alignment_info__face_exists is supported, false if feature is not supported |
void face_sdk__alignment_info_free | ( | face_sdk__alignment_info_t * | alignment_info | ) |
Destroys face_sdk__alignment_info object.
[in] | alignment_info | Alignment Info object |