![]() |
Face Engine SDK
5.3.0
A face detection, recognition and tracking engine.
|
Flying Faces Liveness estimator interface. More...
#include <ILivenessFlyingFacesEstimator.h>
Public Member Functions | |
virtual Result< FSDKError > | estimate (const Image &image, const Detection &detection, LivenessFlyingFacesEstimation &estimation) const noexcept=0 |
Helps to check if person is real or not. More... | |
virtual Result< FSDKError > | estimate (Span< const Image > images, Span< const Detection > detections, Span< LivenessFlyingFacesEstimation > estimations) const noexcept=0 |
Helps to check if persons are real or not. More... | |
virtual Result< FSDKError > | validate (Span< const Image > images, Span< const Detection > detections, Span< Result< FSDKError >> errors) const noexcept=0 |
Validate input of multiple frames in a single function call. More... | |
![]() | |
virtual int32_t | retain () noexcept=0 |
Increase strong reference count. More... | |
virtual int32_t | release () noexcept=0 |
Decrease strong reference count. More... | |
virtual int32_t | getRefCount () const noexcept=0 |
Get actual strong reference count. More... | |
virtual int32_t | retainWeak () noexcept=0 |
Increase weak reference count. More... | |
virtual int32_t | releaseWeak () noexcept=0 |
Decrease weak reference count. More... | |
virtual int32_t | getWeakRefCount () const noexcept=0 |
Get actual weak reference count. More... | |
Flying Faces Liveness estimator interface.
|
pure virtualnoexcept |
Helps to check if person is real or not.
[in] | image | source image with R8G8B8 format |
[in] | detection | detection to proceed. |
[out] | score | estimation score; |
|
pure virtualnoexcept |
Helps to check if persons are real or not.
[in] | images | Span of Image, format of images must be R8G8B8 |
[in] | detections | Span of Detection. |
[out] | scores | span of estimations, |
|
pure virtualnoexcept |
Validate input of multiple frames in a single function call.
[in] | images | span of input images. |
[in] | detections | span of detection coords of corresponding source images. |
[out] | errors | output span of errors for each image. |