Face Engine SDK  5.34.0
A face detection, recognition and tracking engine.
IPhotorealisticFaceEstimator.h
1 #pragma once
2 
3 #include <fsdk/IObject.h>
4 #include <fsdk/FSDKError.h>
5 
6 #include <fsdk/Types/Image.h>
7 #include <fsdk/Types/Result.h>
8 #include <fsdk/Types/Span.h>
9 
10 namespace fsdk {
11 
12 #ifndef DOXYGEN_SHOULD_SKIP_THIS
13  DECLARE_SMARTPTR(IPhotorealisticFaceEstimator);
14 #endif
15 
32  enum class Type {
33  Real = 0,
34  Drawn = 1,
35  };
36 
41  float realScore;
42 
44  };
45 
61  const Image& image,
62  const Detection& detection,
63  PhotorealisticFaceEstimation& estimation) const noexcept = 0;
64 
77  Span<const Image> images,
78  Span<const Detection> detections,
79  Span<PhotorealisticFaceEstimation> estimations) const noexcept = 0;
80 
93  Span<const Image> images,
94  Span<const Detection> detections,
95  Span<Result<FSDKError>> errors) const noexcept = 0;
96  };
97 
99 } // namespace fsdk
PhotorealisticFaceEstimator output structure. This structure contains.
Definition: IPhotorealisticFaceEstimator.h:27
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:70
SDK namespace.
Definition: IAGSEstimator.h:8
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
Object system types and interfaces.
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< Result< FSDKError >> errors) const noexcept=0
Validate input of multiple frames in a single call.
Type result
realScore binarized by a threshold (0.5 by default),
Definition: IPhotorealisticFaceEstimator.h:43
Image.
Definition: Image.h:38
Type
PhotorealisticFaceEstimator output enum. This enum contains all possible estimation results...
Definition: IPhotorealisticFaceEstimator.h:32
PhotorealisticFaceEstimator estimator interface. The estimator determines if the person is real or dr...
Definition: IPhotorealisticFaceEstimator.h:50
float realScore
Definition: IPhotorealisticFaceEstimator.h:41
Detection structure. Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
virtual Result< FSDKError > estimate(const Image &image, const Detection &detection, PhotorealisticFaceEstimation &estimation) const noexcept=0
Estimate if the person is real or drawn.
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14