![]() |
Face Engine SDK
4.6.0
A face detection, recognition and tracking engine.
|
RGBM Liveness estimator interface. More...
#include <ILivenessRGBMEstimator.h>
Public Member Functions | |
virtual fsdk::Result< fsdk::FSDKError > | update (const fsdk::Image &image, uint32_t iFrame, fsdk::Image &background) const noexcept=0 |
Prepare background method. Pass here every frame from the stream to extract background. More... | |
virtual fsdk::Result< fsdk::FSDKError > | estimate (const fsdk::Image &image, const fsdk::Detection &detection, const fsdk::Image &background, fsdk::LivenessRGBMEstimation &estimation) const noexcept=0 |
Check if detection corresponds to person alive or not. 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... | |
RGBM Liveness estimator interface.
|
pure virtualnoexcept |
Check if detection corresponds to person alive or not.
[in] | current | frame with person. |
[in] | face | detection on the frame. |
[in] | fixed | background for the track. |
[in/out] | LivenessRGBMEstimation estimation structure |
|
pure virtualnoexcept |