Face Engine SDK
4.6.0
A face detection, recognition and tracking engine.
|
Approximate Garbage Score estimator interface. More...
#include <IAGSEstimator.h>
Public Member Functions | |
virtual ResultValue< FSDKError, float > | estimate (const fsdk::Image &image, const fsdk::Detection &detection) const noexcept=0 |
Estimate the ags. More... | |
virtual Result< FSDKError > | estimate (const fsdk::Span< const fsdk::Image > images, const fsdk::Span< const fsdk::Detection > detections, fsdk::Span< float > out) const noexcept=0 |
Estimate ags of multiple frames in a single estimate function call. More... | |
Public Member Functions inherited from fsdk::IRefCounted | |
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... | |
Approximate Garbage Score estimator interface.
|
pure virtualnoexcept |
Estimate the ags.
[in] | image | source image in R8G8B8 format. |
[in] | detection | detection coords in image space. |
|
pure virtualnoexcept |
Estimate ags of multiple frames in a single estimate function call.
[in] | images | span of input images. |
[in] | detection | span of detection coords of corresponding source images. |
[out] | out | output span of scores for each image; |