Face Engine SDK  5.21.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ILivenessOneShotRGBEstimator.h
1 #pragma once
2 
3 #include <fsdk/IObject.h>
4 #include <fsdk/FSDKError.h>
5 #include <fsdk/Optional.h>
6 #include <fsdk/Types.h>
7 
8 namespace fsdk {
9 
10 #ifndef DOXYGEN_SHOULD_SKIP_THIS
11  DECLARE_SMARTPTR(ILivenessOneShotRGBEstimator);
12 #endif
13 
25  enum class State {
26  Alive = 0,
27  Fake,
28  Unknown
29  };
30 
31  float score;
33  float qualityScore;
34  };
35 
53  const Image& image,
54  const Detection& detection,
55  const Landmarks5& landmarks5,
56  LivenessOneShotRGBEstimation& estimation,
57  float qualityThreshold = -1.f) const noexcept = 0;
58 
74  Span<const Image> images,
75  Span<const Detection> detections,
76  Span<const Landmarks5> landmarks5,
78  float qualityThreshold = -1.f,
79  LivenessOneShotRGBEstimation* aggregation = nullptr) const noexcept = 0;
80 
94  Span<const Image> images,
95  Span<const Detection> detections,
96  Span<const Landmarks5> landmarks5,
97  Span<Result<FSDKError>> errors) const noexcept = 0;
98  };
99 
101 } // namespace fsdk
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
The liveness status of person on image is Unknown.
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
Common data types and structures.
Face landmarks template structure.
Definition: Landmarks.h:23
The person on image is fake (photo, printed image)
Object system types and interfaces.
State
Definition: ILivenessOneShotRGBEstimator.h:25
Common SDK error codes.
Base strong reference counted object interface.
Definition: IRefCounted.h:37
virtual Result< FSDKError > validate(Span< const Image > images, Span< const Detection > detections, Span< const Landmarks5 > landmarks5, Span< Result< FSDKError >> errors) const noexcept=0
Validate input of multiple frames in a single function call.
virtual Result< FSDKError > estimate(const Image &image, const Detection &detection, const Landmarks5 &landmarks5, LivenessOneShotRGBEstimation &estimation, float qualityThreshold=-1.f) const noexcept=0
OneShot RGB Liveness estimation.
Image.
Definition: Image.h:38
Liveness OneShotRGB estimation structure.
Definition: ILivenessOneShotRGBEstimator.h:24
OneShot RGB Liveness estimator interface.
Definition: ILivenessOneShotRGBEstimator.h:40
State state
Liveness status.
Definition: ILivenessOneShotRGBEstimator.h:32
float score
Estimation score.
Definition: ILivenessOneShotRGBEstimator.h:31
Detection structure. Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
float qualityScore
Liveness quality score.
Definition: ILivenessOneShotRGBEstimator.h:33
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14