![]() |
Face Engine SDK
5.4.1
A face detection, recognition and tracking engine.
|
Human detection area warper interface. More...
#include <IHumanWarper.h>
Public Member Functions | |
virtual Result< FSDKError > | warp (const Image image, const Detection &detection, Image &transformedImage) const noexcept=0 |
Warp human detection. More... | |
virtual Result< FSDKError > | warp (Span< const Image > images, Span< const Detection > detections, Span< Image > transformedImages) const noexcept=0 |
Warps humans on multiple images. More... | |
![]() | |
virtual int32_t | retain () noexcept=0 |
Increase strong reference count. 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... | |
Human detection area warper interface.
Performs cropping and resizing of an image for human descriptor extraction.
|
pure virtualnoexcept |
Warp human detection.
[in] | image | source |
[in] | Detection | detection of a human. |
[in/out] | transformedImage warped image output. |
|
pure virtualnoexcept |
Warps humans on multiple images.
[in] | images | array of images from which to warp humans. |
[in] | Detection | is an array of detection structs. |
[in/out] | transformedImages is an array of input/output images where result will be stored. |