Face Engine SDK  5.23.1
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
IHeadPoseEstimator.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 #include <cmath>
9 
10 namespace fsdk {
11 
12 #ifndef DOXYGEN_SHOULD_SKIP_THIS
13  DECLARE_SMARTPTR(IHeadPoseEstimator);
14 #endif
15 
27  float pitch;
28  float yaw;
29  float roll;
30 
32  Non = 0,
33  Good,
34  ISO
35  };
36 
40  inline FrontalFaceType getFrontalFaceType() const;
41  };
42 
63  virtual Result<FSDKError>
64  estimate(const Image& image, const Detection& detection, HeadPoseEstimation& out) const noexcept = 0;
65 
78  Span<const Image> images,
79  Span<const Detection> detections,
80  Span<HeadPoseEstimation> out) const noexcept = 0;
81 
94  Span<const Image> images,
95  Span<const Detection> detections,
96  Span<Result<FSDKError>> errors) const noexcept = 0;
97  };
98 
99  /*
100  Implementation details.
101  */
103  if(std::abs(roll) <= 8 && std::abs(pitch) <= 5 && std::abs(yaw) <= 5)
105  if(std::abs(roll) <= 30 && std::abs(pitch) <= 40 && std::abs(yaw) <= 40)
108  }
109 
111 } // namespace fsdk
Head pose estimation output.
Definition: IHeadPoseEstimator.h:26
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
Common data types and structures.
float roll
Roll angle estimation.
Definition: IHeadPoseEstimator.h:29
float yaw
Yaw angle estimation.
Definition: IHeadPoseEstimator.h:28
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 function call.
Object system types and interfaces.
Common SDK error codes.
Base strong reference counted object interface.
Definition: IRefCounted.h:37
Non-frontal face.
Definition: IHeadPoseEstimator.h:32
Good for recognition; Doesn&#39;t descrease recall and looks fine.
Definition: IHeadPoseEstimator.h:33
FrontalFaceType getFrontalFaceType() const
Returns type of face frontality.
Definition: IHeadPoseEstimator.h:102
Image.
Definition: Image.h:38
GOST/ISO angles.
Definition: IHeadPoseEstimator.h:34
FrontalFaceType
Definition: IHeadPoseEstimator.h:31
float pitch
Pitch angle estimation.
Definition: IHeadPoseEstimator.h:27
Head pose angles estimator interface.
Definition: IHeadPoseEstimator.h:53
Detection structure. Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14
virtual Result< FSDKError > estimate(const Image &image, const Detection &detection, HeadPoseEstimation &out) const noexcept=0
Estimate the angles.