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
ILivenessIREstimator.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(ILivenessIREstimator);
12 #endif
13 
24  struct IREstimation {
25  float score;
26  bool isReal;
27  };
28 
43  virtual Result<FSDKError> estimate(const Image& warp, IREstimation& irEstimation) const noexcept = 0;
44 
55  virtual Result<FSDKError>
56  estimate(Span<const Image> warps, Span<IREstimation> irEstimation) const noexcept = 0;
57 
68  virtual Result<FSDKError>
69  validate(Span<const Image> warps, Span<Result<FSDKError>> errors) const noexcept = 0;
70  };
71 
73 } // namespace fsdk
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
Infra red liveness estimator interface.
Definition: ILivenessIREstimator.h:34
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
Common data types and structures.
virtual Result< FSDKError > estimate(const Image &warp, IREstimation &irEstimation) const noexcept=0
Check whether or not infrared warp corresponds to the real person.
Object system types and interfaces.
Common SDK error codes.
virtual Result< FSDKError > validate(Span< const Image > warps, Span< Result< FSDKError >> errors) const noexcept=0
Validate input of multiple frames in a single function call.
IR estimation structure. Each score in normalized [0, 1] range, isReal shows real person or not...
Definition: ILivenessIREstimator.h:24
Base strong reference counted object interface.
Definition: IRefCounted.h:37
Image.
Definition: Image.h:38
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14