 |
Face Engine SDK
5.21.0
A face detection, recognition and tracking engine.
|
4 #include <fsdk/FSDKError.h>
5 #include <fsdk/IRefCounted.h>
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
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition: Span.h:14
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
SDK namespace.
Definition: IAGSEstimator.h:8
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.
Face landmarks template structure.
Definition: Landmarks.h:23
Depth+RGB estimator interface.
Definition: ILivenessDepthRGBEstimator.h:41
Depth+RBG liveness estimation output structure.
Definition: ILivenessDepthRGBEstimator.h:27
float score
boolean flag that indicates whether a person is real.
Definition: ILivenessDepthRGBEstimator.h:30
Detection structure. @detail Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
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.
virtual Result< FSDKError > estimate(Span< const Image > depths, Span< const Image > rgbs, Span< const Detection > detections, Span< const Landmarks5 > landmarks5, Span< DepthRGBEstimation > outs) const noexcept=0
Checks several detection on several images to see whether or not the detections corresponds to the re...
Image.
Definition: Image.h:38
Base strong reference counted object interface.
Definition: IRefCounted.h:37