Face Engine SDK  5.8.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fsdk::IWarper Struct Referenceabstract

Face detection area warper interface. More...

#include <IWarper.h>

Inheritance diagram for fsdk::IWarper:
fsdk::IRefCounted

Public Types

using ImageBatch = std::vector< Image >
 Common aliases for IWarper asynchronous interface.
 
using ImageBatchFuture = vlc::future< ImageBatch >
 

Public Member Functions

virtual Transformation createTransformation (const Detection &detection, const Landmarks5 &landmarks) const noexcept=0
 Create transformation data struct. More...
 
virtual Result< FSDKErrorwarp (const Image &image, const Transformation &transformation, Image &transformedImage) const noexcept=0
 Warp image. More...
 
virtual Result< FSDKErrorwarp (Span< const Image > images, Span< const Transformation > transformations, Span< Image > transformedImages) const noexcept=0
 Warp faces on multiple images. More...
 
virtual Result< FSDKErrorwarp (const Landmarks5 &landmarks, const Transformation &transformation, Landmarks5 &transformedLandmarks) const noexcept=0
 Warp landmarks of size 5. More...
 
virtual Result< FSDKErrorwarp (const Landmarks68 &landmarks68, const Transformation &transformation, Landmarks68 &transformedLandmarks68) const noexcept=0
 Warp landmarks of size 68. More...
 
virtual Result< FSDKErrorunwarp (const EyesEstimation &eyesEstimationInWarpCoordinates, const Transformation &transformation, EyesEstimation &eyesEstimation) const noexcept=0
 Warp irisLandmarks in EyesEstimation struct for both eyes. More...
 
virtual Result< FSDKErrorunwarp (const Landmarks5 &warpedLandmarks5, const Transformation &transformation, Landmarks5 &landmarks5) const noexcept=0
 Warp landmarks of size 5 back to source image coordinates. More...
 
virtual Result< FSDKErrorunwarp (const Landmarks68 &warpedLandmarks68, const Transformation &transformation, Landmarks68 &landmarks68) const noexcept=0
 Warp landmarks of size 68 back to source image coordinates. More...
 
virtual Result< FSDKErrorunwarp (const GazeEstimation &warpedAngles, const Transformation &transformation, GazeEstimation &angles) const noexcept=0
 
virtual ImageBatchFuture warpAsync (Span< const Image > images, Span< const Transformation > transformations) const =0
 Asynchronously warp faces on multiple images. More...
 
- Public Member Functions inherited from fsdk::IRefCounted
virtual int32_t retain () noexcept=0
 Increase strong reference count. More...
 
virtual int32_t retainLocked () noexcept=0
 Increase strong reference count thread safely. More...
 
virtual int32_t release () noexcept=0
 Decrease strong reference count. More...
 
virtual int32_t getRefCount () const noexcept=0
 Get actual strong reference count. More...
 
virtual int32_t retainWeak () noexcept=0
 Increase weak reference count. More...
 
virtual int32_t releaseWeak () noexcept=0
 Decrease weak reference count. More...
 
virtual int32_t getWeakRefCount () const noexcept=0
 Get actual weak reference count. More...
 

Detailed Description

Face detection area warper interface.

Perform affine transformations on an image to properly align depicted face for descriptor extraction.

Member Function Documentation

virtual Transformation fsdk::IWarper::createTransformation ( const Detection detection,
const Landmarks5 landmarks 
) const
pure virtualnoexcept

Create transformation data struct.

Parameters
[in]detectiondetection coordinates in image space.
[in]landmarksvector of landmarks to calculate warping angles.
Returns
Transformation object.
See Also
Transformation, Detection and Landmarks5 for details.
virtual Result<FSDKError> fsdk::IWarper::unwarp ( const EyesEstimation eyesEstimationInWarpCoordinates,
const Transformation transformation,
EyesEstimation eyesEstimation 
) const
pure virtualnoexcept

Warp irisLandmarks in EyesEstimation struct for both eyes.

Warps from warped image coord. space to source image coordinates space, the one that was used to create transformation.

Parameters
[in]eyesEstimationInWarpCoordinatesEyesEstimation straight out of EyeEstimator. Should be create from warpedImage, that was created with the same transformation object as the one passed.
[in]transformationtransformation data.
[out]eyesEstimationeyes estimation with iris landmarks warped to source image coordinates space.
Returns
Result with error code.
See Also
Transformation, EyesEstimation, Result and FSDKError for details.
virtual Result<FSDKError> fsdk::IWarper::unwarp ( const Landmarks5 warpedLandmarks5,
const Transformation transformation,
Landmarks5 landmarks5 
) const
pure virtualnoexcept

Warp landmarks of size 5 back to source image coordinates.

Parameters
[in]warpedLandmarks5warped landmarks array of size 5.
[in]transformationtransformation data.
[out]landmarks5landmarks of size 5 warped back to source image coordinates.
Returns
Result with error code.
See Also
Transformation, Landmarks5, Result and FSDKError for details.
virtual Result<FSDKError> fsdk::IWarper::unwarp ( const Landmarks68 warpedLandmarks68,
const Transformation transformation,
Landmarks68 landmarks68 
) const
pure virtualnoexcept

Warp landmarks of size 68 back to source image coordinates.

Parameters
[in]warpedLandmarks5warped landmarks array of size 68.
[in]transformationtransformation data.
[out]landmarks5landmarks of size 68 warped back to source image coordinates.
Returns
Result with error code.
See Also
Transformation, Landmarks68, Result and FSDKError for details.
virtual Result<FSDKError> fsdk::IWarper::warp ( const Image image,
const Transformation transformation,
Image transformedImage 
) const
pure virtualnoexcept

Warp image.

Parameters
[in]imagesource image.
[in]transformationtransformation data.
[out]transformedImageoutput transformed image.
Returns
Result with error code.
See Also
Transformation, Image, Result and FSDKError for details.
Note
image format must be R8G8B8,
See Also
Format.
virtual Result<FSDKError> fsdk::IWarper::warp ( Span< const Image images,
Span< const Transformation transformations,
Span< Image transformedImages 
) const
pure virtualnoexcept

Warp faces on multiple images.

Parameters
[in]imagesspan of source images.
[in]transformationsspan of transformation structures.
[in/out]transformedImages span of output warped images.
Note
: all input images must have the same memory residence.
: Each entry index in transformations span corresponds to the same index in images span to make warps from(i.e. transformations[i] <–> images[i]), so if there are multiple warps on the same image then this image must be duplicated in images span in order for the first statement to hold true.
: if images in transformedImages span has the same parameters as the standard warped image has then no memory will be allocated and output data will be just copied to the backing memory of the output images. New images will be allocated otherwise.
Returns
Result with error code.
See Also
Span, Transformation, Image, Result and FSDKError for details.
Note
images format must be R8G8B8,
See Also
Format.
Note
all spans should be based on user owned continuous collections.
all spans should be equal size.
virtual Result<FSDKError> fsdk::IWarper::warp ( const Landmarks5 landmarks,
const Transformation transformation,
Landmarks5 transformedLandmarks 
) const
pure virtualnoexcept

Warp landmarks of size 5.

Parameters
[in]landmarkslandmarks array of size 5
[in]transformationtransformation data.
[out]transformedLandmarksoutput transformed landmarks. If transformation is created with detection, it's in the coordinates of transformed warped image, otherwise in the coordinates of detection.
Returns
Result with error code.
See Also
Transformation, Landmarks5, Result and FSDKError for details.
virtual Result<FSDKError> fsdk::IWarper::warp ( const Landmarks68 landmarks68,
const Transformation transformation,
Landmarks68 transformedLandmarks68 
) const
pure virtualnoexcept

Warp landmarks of size 68.

Parameters
[in]landmarks68landmarks to warp.
[in]transformationtransformation data.
[out]transformedLandmarks68output transformed landmarks of size 68. If transformation is created with detection, it's in the coordinates of transformed warped image, otherwise in the coordinates of detection.
Returns
Result with error code.
See Also
Transformation, Landmarks68, Result and FSDKError for details.
virtual ImageBatchFuture fsdk::IWarper::warpAsync ( Span< const Image images,
Span< const Transformation transformations 
) const
pure virtual

Asynchronously warp faces on multiple images.

Parameters
[in]imagesspan of source images.
[in]transformationsspan of transformation structures.
Returns
Future result object with error code and warped image batch.
See Also
Span, Transformation, Image, Result and FSDKError for details.
Note
images format must be R8G8B8,
See Also
Format.
Note
all spans should be based on user owned continuous collections.
all spans should be equal size.
this method is experimental and interface may be changed in the future.
this method is not marked as noexcept and may throw an exception.

The documentation for this struct was generated from the following file: