6 #include <fsdk/Types/Detection.h>
7 #include <fsdk/Types/Image.h>
8 #include <fsdk/Types/Landmarks.h>
9 #include <fsdk/Types/Ref.h>
10 #include <fsdk/Types/Result.h>
11 #include <fsdk/Types/Span.h>
15 #ifndef DOXYGEN_SHOULD_SKIP_THIS
float score
boolean flag that indicates whether a person is real.
Definition: ILivenessDepthRGBEstimator.h:30
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
Face landmarks template structure.
Definition: Landmarks.h:23
Base strong reference counted object interface.
Definition: IRefCounted.h:37
virtual Result< FSDKError > validate(Span< const Image > depths, Span< const Image > rgbs, Span< const Detection > detections, Span< const Landmarks5 > landmarks5, Span< Result< FSDKError >> errors) const noexcept=0
Validates input of multiple frames in a single function call.
Depth+RBG liveness estimation output structure.
Definition: ILivenessDepthRGBEstimator.h:27
Depth+RGB estimator interface.
Definition: ILivenessDepthRGBEstimator.h:41
Image.
Definition: Image.h:38
virtual Result< FSDKError > estimate(const Image &depth, const Image &rgb, const Detection &detection, const Landmarks5 &landmarks5, DepthRGBEstimation &out) const noexcept=0
Checks whether or not the detection corresponds to the real person.
Detection structure. Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14
Reference counted object interface.