![]() |
Face SDK
1.7 Mozart rc
Face Recognition Software Development Kit
|
Classes | |
class | face_sdk::builder |
Builder algorithm. The Builder algorithm builds FIR for specified aligned faces. More... | |
Functions | |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, const std::shared_ptr< face_sdk::license > &license, const std::shared_ptr< face_sdk::data_container > &contaner, uint32_t batch_size, int32_t compute_device) |
Makes the face_sdk::builder object with specified version, license, data container, batch size and compute_device. More... | |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, const std::shared_ptr< face_sdk::license > &license, const std::shared_ptr< face_sdk::data_container > &contaner, uint32_t batch_size, int32_t compute_device, bool produce_long_firs) |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, const std::shared_ptr< face_sdk::license > &license, uint32_t batch_size, int32_t compute_device) |
Makes the face_sdk::builder object with specified version, license, batch size and compute device. The data container is loaded from known paths (see Known paths). More... | |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, const std::shared_ptr< face_sdk::license > &license, uint32_t batch_size, int32_t compute_device, bool produce_long_firs) |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, const std::shared_ptr< face_sdk::data_container > &contaner, uint32_t batch_size, int32_t compute_device) |
Makes the face_sdk::builder object with specified version, data container, batch size and compute device. The license is loaded from known paths (see Known paths). More... | |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, const std::shared_ptr< face_sdk::data_container > &contaner, uint32_t batch_size, int32_t compute_device, bool produce_long_firs) |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, uint32_t batch_size, int32_t compute_device) |
Makes the face_sdk::builder object with specified version, batch size and compute device. The data container and the license are loaded from known paths (see Known paths). More... | |
std::shared_ptr< face_sdk::builder > FACE_SDK_EXPORT | face_sdk::make_builder (uint32_t version, uint32_t batch_size, int32_t compute_device, bool produce_long_firs) |
Module extracts biometric templates (FIRs) from images, received after alignment.
Builder module has no assessment and extract template from any input, even if there is not face on the image.
Builder module is compatible with the same version of Fir Matcher!
Builder 200 requires Fir Matcher 200, Builder 210 requires Fir Matcher 210, etc
std::shared_ptr<face_sdk::builder> FACE_SDK_EXPORT face_sdk::make_builder | ( | uint32_t | version, |
const std::shared_ptr< face_sdk::data_container > & | contaner, | ||
uint32_t | batch_size, | ||
int32_t | compute_device | ||
) |
Makes the face_sdk::builder object with specified version, data container, batch size and compute device. The license is loaded from known paths (see Known paths).
[in] | version | Required version of the algorithm. See Builder versions. |
[in] | contaner | The container with algorithm data. |
[in] | batch_size | The batch size. See Batching. |
[in] | compute_device | The compute device. -1 = CPU. 0, 1, ..., N - GPU device. |
face_sdk::exception | See Exceptions handling. |
std::shared_ptr<face_sdk::builder> FACE_SDK_EXPORT face_sdk::make_builder | ( | uint32_t | version, |
const std::shared_ptr< face_sdk::license > & | license, | ||
const std::shared_ptr< face_sdk::data_container > & | contaner, | ||
uint32_t | batch_size, | ||
int32_t | compute_device | ||
) |
Makes the face_sdk::builder object with specified version, license, data container, batch size and compute_device.
[in] | version | Required version of the algorithm. See Builder versions. |
[in] | license | The license object. See Licensing. |
[in] | contaner | The container with algorithm data. |
[in] | batch_size | The batch size. See Batching. |
[in] | compute_device | The compute device. -1 = CPU. 0, 1, ..., N - GPU device. |
face_sdk::exception | See Exceptions handling. |
std::shared_ptr<face_sdk::builder> FACE_SDK_EXPORT face_sdk::make_builder | ( | uint32_t | version, |
const std::shared_ptr< face_sdk::license > & | license, | ||
uint32_t | batch_size, | ||
int32_t | compute_device | ||
) |
Makes the face_sdk::builder object with specified version, license, batch size and compute device. The data container is loaded from known paths (see Known paths).
[in] | version | Required version of the algorithm. See Builder versions. |
[in] | license | The license object. See Licensing. |
[in] | batch_size | The batch size. See Batching. |
[in] | compute_device | The compute device. -1 = CPU. 0, 1, ..., N - GPU device. |
face_sdk::exception | See Exceptions handling. |
std::shared_ptr<face_sdk::builder> FACE_SDK_EXPORT face_sdk::make_builder | ( | uint32_t | version, |
uint32_t | batch_size, | ||
int32_t | compute_device | ||
) |
Makes the face_sdk::builder object with specified version, batch size and compute device. The data container and the license are loaded from known paths (see Known paths).
[in] | version | Required version of the algorithm. See Builder versions. |
[in] | batch_size | The batch size. See Batching. |
[in] | compute_device | The compute device. -1 = CPU. 0, 1, ..., N - GPU device. |
face_sdk::exception | See Exceptions handling. |