Face Engine SDK
5.23.1
A face detection, recognition and tracking engine.
|
Depth estimator interface. More...
#include <IDepthLivenessEstimator.h>
Public Member Functions | |
virtual Result< FSDKError > | estimate (const Image &depth, DepthLivenessEstimation &out) const noexcept=0 |
Check whether or not depth map corresponds to the real person. More... | |
virtual Result< FSDKError > | estimate (Span< const Image > depths, Span< DepthLivenessEstimation > outs) const noexcept=0 |
Check whether several depth maps correspond to real persons. More... | |
virtual Result< FSDKError > | validate (Span< const Image > depths, Span< Result< FSDKError >> errors) const noexcept=0 |
Validates input of multiple depth maps of face warps in a single function call. More... | |
Public Member Functions inherited from fsdk::IRefCounted | |
virtual int32_t | retain () noexcept=0 |
Increase strong reference count. More... | |
virtual int32_t | retainLocked () noexcept=0 |
Increase strong reference count thread safely. 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... | |
Depth estimator interface.
|
pure virtualnoexcept |
Check whether or not depth map corresponds to the real person.
[in] | depth | depth image with warped face. |
[out] | out | DepthEstimation output structure. |
|
pure virtualnoexcept |
Check whether several depth maps correspond to real persons.
[in] | depths | depth images with warped faces. |
[out] | outs | liveness estimations. |
|
pure virtualnoexcept |
Validates input of multiple depth maps of face warps in a single function call.
[in] | depths | source Depth images span |
[out] | errors | output span of errors for each image. |