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. | |
virtual Result< FSDKError > | estimate (Span< const Image > depths, Span< DepthLivenessEstimation > outs) const noexcept=0 |
Check whether several depth maps correspond to real persons. | |
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. |
Depth estimator interface.
virtual Result<FSDKError> fsdk::IDepthLivenessEstimator::estimate | ( | const Image & | depth, |
DepthLivenessEstimation & | out | ||
) | const [pure virtual] |
Check whether or not depth map corresponds to the real person.
[in] | depth | depth image with warped face. |
[out] | out | DepthEstimation output structure. |
virtual Result<FSDKError> fsdk::IDepthLivenessEstimator::estimate | ( | Span< const Image > | depths, |
Span< DepthLivenessEstimation > | outs | ||
) | const [pure virtual] |
Check whether several depth maps correspond to real persons.
[in] | depths | depth images with warped faces. |
[out] | outs | liveness estimations. |
virtual Result<FSDKError> fsdk::IDepthLivenessEstimator::validate | ( | Span< const Image > | depths, |
Span< Result< FSDKError >> | errors | ||
) | const [pure virtual] |
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. |