 |
Face Engine SDK
5.8.0
A face detection, recognition and tracking engine.
|
Go to the documentation of this file.
11 #include <fsdk/Types/Span.h>
13 #include <fsdk/vlc/future.h>
16 struct EyesEstimation;
17 struct GazeEstimation;
22 #ifndef DOXYGEN_SHOULD_SKIP_THIS
55 const Landmarks5& landmarks)
const noexcept = 0;
70 Image& transformedImage)
const noexcept = 0;
111 Landmarks5& transformedLandmarks)
const noexcept = 0;
127 Landmarks68& transformedLandmarks68)
const noexcept = 0;
176 const GazeEstimation& warpedAngles,
178 GazeEstimation& angles
179 )
const noexcept = 0;
185 using ImageBatchFuture = vlc::future<ImageBatch>;
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition: Span.h:15
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 coordinates.
Face detection area warper interface.
Definition: IWarper.h:44
virtual Result< FSDKError > warp(Span< const Image > images, Span< const Transformation > transformations, Span< Image > transformedImages) const noexcept=0
Warp faces on multiple images.
SDK namespace.
Definition: IAGSEstimator.h:8
std::vector< Image > ImageBatch
Common aliases for IWarper asynchronous interface.
Definition: IWarper.h:184
virtual ImageBatchFuture warpAsync(Span< const Image > images, Span< const Transformation > transformations) const =0
Asynchronously warp faces on multiple images.
Face landmarks template structure.
Definition: Landmarks.h:20
virtual Transformation createTransformation(const Detection &detection, const Landmarks5 &landmarks) const noexcept=0
Create transformation data struct.
Detection structure. @detail Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
A structure that encapsulates an action result enumeration.
Definition: Result.h:30
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 coordinates.
Base strong reference counted object interface.
Definition: IRefCounted.h:36
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.