Face Engine SDK 5.25.0
A face detection, recognition and tracking engine.
Loading...
Searching...
No Matches
IEyeEstimator.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
8namespace fsdk {
9
10#ifndef DOXYGEN_SHOULD_SKIP_THIS
11 DECLARE_SMARTPTR(IEyeEstimator);
12#endif
13
55
61 struct EyesRects {
62 Rect leftEyeRect;
63 Rect rightEyeRect;
64 };
65
66 EyesRects cropByLandmarks5(const Image& warp, const Landmarks5& landmarks5);
67
68 EyeCropper::EyesRects cropByLandmarks68(const Image& warp, const Landmarks68& landmarks68);
69 };
70
97 const Image& warp,
98 const EyeCropper::EyesRects& eyeRects,
99 EyesEstimation& eyesEstimation) const noexcept = 0;
100
117 Span<const Image> warps,
119 Span<EyesEstimation> eyesEstimations) const noexcept = 0;
120
134 Span<const Image> warps,
136 Span<Result<FSDKError>> errors) const noexcept = 0;
137 };
138
140} // namespace fsdk
#define FSDK_API
Dummy.
Definition Def.h:27
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition Span.h:14
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition Def.h:56
SDK namespace.
Definition IAGSEstimator.h:8
Definition IEyeEstimator.h:61
EyeCropper is a helper structure for IEyeEstimator interface Methods of this structure crop an input ...
Definition IEyeEstimator.h:60
Eyes attribute structure.
Definition IEyeEstimator.h:27
IrisLandmarks iris
Iris landmarks.
Definition IEyeEstimator.h:48
EyelidLandmarks eyelid
Eyelid landmarks.
Definition IEyeEstimator.h:49
State state
State of an eye.
Definition IEyeEstimator.h:46
State
Enumeration of possible eye states.
Definition IEyeEstimator.h:31
@ Occluded
Eye is concealed, or landmark passed to estimator doesn't point to an eye.
static constexpr uint64_t eyelidLandmarksCount
Eyelid landmarks amount.
Definition IEyeEstimator.h:38
static constexpr uint64_t irisLandmarksCount
Iris landmarks amount.
Definition IEyeEstimator.h:37
Eyes estimation output.
Definition IEyeEstimator.h:23
EyeAttributes rightEye
Right eye attributes.
Definition IEyeEstimator.h:53
EyeAttributes leftEye
Left eye attributes.
Definition IEyeEstimator.h:52
Eye estimator interface.
Definition IEyeEstimator.h:81
virtual Result< FSDKError > validate(Span< const Image > warps, Span< const EyeCropper::EyesRects > eyeRects, Span< Result< FSDKError > > errors) const noexcept=0
Validate input of multiple frames in a single function call.
virtual Result< FSDKError > estimate(Span< const Image > warps, Span< const EyeCropper::EyesRects > eyeRects, Span< EyesEstimation > eyesEstimations) const noexcept=0
Estimate the attributes of multiple warped images in a single estimate function call.
virtual Result< FSDKError > estimate(const Image &warp, const EyeCropper::EyesRects &eyeRects, EyesEstimation &eyesEstimation) const noexcept=0
Estimate the attributes.
Base strong reference counted object interface.
Definition IRefCounted.h:37
Image.
Definition Image.h:38
A structure that encapsulates an action result enumeration.
Definition Result.h:27