11 #include <fsdk/Types/Span.h>
13 #include <fsdk/vlc/future.h>
16 struct EyesEstimation;
17 struct GazeEstimation;
22 #ifndef DOXYGEN_SHOULD_SKIP_THIS
61 const Landmarks5& landmarks)
const noexcept = 0;
76 Image& transformedImage)
const noexcept = 0;
115 Landmarks5& transformedLandmarks)
const noexcept = 0;
131 Landmarks68& transformedLandmarks68)
const noexcept = 0;
180 const GazeEstimation& warpedAngles,
182 GazeEstimation& angles
183 )
const noexcept = 0;
189 using ImageBatchFuture = vlc::future<ImageBatch>;
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
A structure that encapsulates an action result enumeration.
Definition: Result.h:29
Face landmarks template structure.
Definition: Landmarks.h:21
Face detection area warper interface.
Definition: IWarper.h:50
Eyes estimation output.
Definition: IEyeEstimator.h:23
Base strong reference counted object interface.
Definition: IRefCounted.h:36
virtual Transformation createTransformation(const Detection &detection, const Landmarks5 &landmarks) const noexcept=0
Create transformation data struct.
virtual Result< FSDKError > unwarp(const EyesEstimation &eyesEstimationInWarpCoordinates, const Transformation &transformation, EyesEstimation &eyesEstimation) const noexcept=0
Warp irisLandmarks in EyesEstimation struct for both eyes.
Descriptor extractor and matcher interfaces.
virtual Result< FSDKError > warp(const Image &image, const Transformation &transformation, Image &transformedImage) const noexcept=0
Warp image.
Image.
Definition: Image.h:39
virtual ImageBatchFuture warpAsync(Span< const Image > images, Span< const Transformation > transformations) const =0
Asynchronously warp faces on multiple images.
std::vector< Image > ImageBatch
Common aliases for IWarper asynchronous interface.
Definition: IWarper.h:188
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