 |
Face Engine SDK
4.7.0
A face detection, recognition and tracking engine.
|
Go to the documentation of this file.
13 struct EyesEstimation;
14 struct GazeEstimation;
19 #ifndef DOXYGEN_SHOULD_SKIP_THIS
50 const Landmarks5& landmarks)
const noexcept = 0;
63 Image& transformedImage)
const noexcept = 0;
78 Landmarks5& transformedLandmarks)
const noexcept = 0;
93 Landmarks68& transformedLandmarks68)
const noexcept = 0;
138 const fsdk::GazeEstimation& warpedAngles,
140 fsdk::GazeEstimation& angles
141 )
const noexcept = 0;
virtual Result< FSDKError > warp(const Image &image, const Transformation &transformation, Image &transformedImage) const noexcept=0
Warp image.
virtual Result< FSDKError > unwarp(const EyesEstimation &eyesEstimationInWarpCoordinates, const Transformation &transformation, EyesEstimation &eyesEstimation) const noexcept=0
Warp irisLandmarks in EyesEstimation struct for both eyes.
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
virtual Result< FSDKError > unwarp(const Landmarks5 &warpedLandmarks5, const Transformation &transformation, Landmarks5 &landmarks5) const noexcept=0
Warp landmarks of size 5 back to source image coords.
Face detection area warper interface.
Definition: IWarper.h:41
SDK namespace.
Definition: IAGSEstimator.h:8
Face landmarks template structure.
Definition: Landmarks.h:18
virtual Transformation createTransformation(const Detection &detection, const Landmarks5 &landmarks) const noexcept=0
Create transformation data struct.
Eyes estimation output.
Definition: IEyeEstimator.h:18
Image.
Definition: Image.h:38
virtual Result< FSDKError > unwarp(const Landmarks68 &warpedLandmarks68, const Transformation &transformation, Landmarks68 &landmarks68) const noexcept=0
Warp landmarks of size 68 back to source image coords.
Base strong reference counted object interface.
Definition: IRefCounted.h:36
Face detection. @detail Stores a detected face bounding box within a source image frame as well as de...
Definition: Detection.h:10
virtual Result< FSDKError > warp(const Landmarks5 &landmarks, const Transformation &transformation, Landmarks5 &transformedLandmarks) const noexcept=0
Warp landmarks of size 5.
virtual Result< FSDKError > warp(const Landmarks68 &landmarks68, const Transformation &transformation, Landmarks68 &transformedLandmarks68) const noexcept=0
Warp landmarks of size 68.
Descriptor extractor and matcher interfaces.