Face Engine SDK
5.21.0
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... | |
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... | |
Human detection area warper interface.
Performs cropping and resizing of an image for human descriptor extraction.
|
pure virtualnoexcept |
Warp human detection.
[in] | image | source image. |
[in] | detection | detection coordinates in image space. |
[in/out] | transformedImage warped image output. |
|
pure virtualnoexcept |
Warps humans on multiple images.
[in] | images | span of source images. |
[in] | detections | span of detection coordinates in corresponding source images space. |
[in/out] | transformedImages span of input/output images where result will be stored. |