Face Engine SDK  4.9.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ILivenessFlyingFacesEstimator.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(ILivenessFlyingFacesEstimator);
12 #endif
13 
21  float score;
22  bool isReal;
23  };
24 
30 
40  const fsdk::Face& face,
41  LivenessFlyingFacesEstimation& estimation) const noexcept = 0;
42 
55  fsdk::Span<LivenessFlyingFacesEstimation> estimations) const noexcept = 0;
56  };
57 
58 } // namespace fsdk
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
A structure that encapsulates an action result enumeration.
Definition: Result.h:29
Common data types and structures.
Object system types and interfaces.
Common SDK error codes.
Definition: Face.h:9
Base strong reference counted object interface.
Definition: IRefCounted.h:36
Liveness Flying Faces estimation output.
Definition: ILivenessFlyingFacesEstimator.h:20
virtual fsdk::Result< fsdk::FSDKError > estimate(const fsdk::Face &face, LivenessFlyingFacesEstimation &estimation) const noexcept=0
Helps to check if person is real or not.
bool isReal
Is real face (true) or not (false).
Definition: ILivenessFlyingFacesEstimator.h:22
Flying Faces Liveness estimator interface.
Definition: ILivenessFlyingFacesEstimator.h:29
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:13
float score
Numerical value in range [0, 1].
Definition: ILivenessFlyingFacesEstimator.h:21