![]() |
Face SDK
1.13.0 Mozart release
Face Recognition Software Development Kit
|
#include <face_sdk_base/export.h>
#include <c_interface/common/face_sdk_set.h>
#include <c_interface/face_sdk_base/landmark.h>
Go to the source code of this file.
Classes | |
struct | face_sdk__landmark_set |
Set of face landmarks. More... | |
Typedefs | |
typedef struct face_sdk__landmark_set | face_sdk__landmark_set_t |
Set of face landmarks. | |
Functions | |
bool | face_sdk__make_landmark_set (face_sdk__landmark_set_t **set) |
Makes face_sdk__landmark_set_t collection with items of type face_sdk__landmark_t * *. More... | |
bool | face_sdk__landmark_set__get_size (const face_sdk__landmark_set_t *set, uint64_t *value) |
Retrieves number of items stored in collection * *. More... | |
bool | face_sdk__landmark_set__get_at (const face_sdk__landmark_set_t *set, uint64_t pos, face_sdk__landmark_t **item) |
Retrieves item by index * *. More... | |
bool | face_sdk__landmark_set__set_at (face_sdk__landmark_set_t *set, uint64_t pos, const face_sdk__landmark_t *item) |
Sets item by index * *. More... | |
bool | face_sdk__landmark_set__append (face_sdk__landmark_set_t *set, const face_sdk__landmark_t *item) |
Appends item into collection * *. More... | |
bool | face_sdk__landmark_set__remove_at (face_sdk__landmark_set_t *set, uint64_t pos) |
Removes item by index * *. More... | |
bool | face_sdk__landmark_set__clear (face_sdk__landmark_set_t *set) |
Removes all items from collection *. More... | |
bool | face_sdk__landmark_set__get_addr (const face_sdk__landmark_set_t *set, uint64_t *addr) |
Retrieves face_sdk__landmark_set_t object address * *. More... | |
void | face_sdk__landmark_set_free (face_sdk__landmark_set_t *set) |
Destroys face_sdk__landmark_set_t object * *. More... | |