Face Engine SDK 5.25.0
A face detection, recognition and tracking engine.
|
Image transfer facility which give speed up of usage internal memory pool. More...
#include <IImageTransfer.h>
Public Types | |
using | ImagesBatchFuture = vlc::future<IImagesBatchPtr> |
Common alias for IImageTransfer asynchronous interface. | |
Public Member Functions | |
virtual ResultValue< FSDKError, Ref< IImagesBatch > > | transfer (Span< const Image > images, Image::MemoryResidence residence) const noexcept=0 |
Transfer of multiple images. | |
virtual Result< FSDKError > | validate (Span< const Image > images, Image::MemoryResidence residence, Span< Result< FSDKError > > errors) const noexcept=0 |
Validate input of multiple frames in a single function call. | |
virtual ImagesBatchFuture | transferAsync (Span< const Image > images, Image::MemoryResidence residence) const =0 |
Asynchronously transfer multiple images. | |
Public Member Functions inherited from fsdk::IRefCounted | |
virtual int32_t | retain () noexcept=0 |
Increase strong reference count. | |
virtual int32_t | retainLocked () noexcept=0 |
Increase strong reference count thread safely. | |
virtual int32_t | release () noexcept=0 |
Decrease strong reference count. | |
virtual int32_t | getRefCount () const noexcept=0 |
Get actual strong reference count. | |
virtual int32_t | retainWeak () noexcept=0 |
Increase weak reference count. | |
virtual int32_t | releaseWeak () noexcept=0 |
Decrease weak reference count. | |
virtual int32_t | getWeakRefCount () const noexcept=0 |
Get actual weak reference count. | |
Image transfer facility which give speed up of usage internal memory pool.
|
pure virtualnoexcept |
Transfer of multiple images.
[in] | images | span of source images. |
[in] | residence | desired destination residence. |
|
pure virtual |
Asynchronously transfer multiple images.
[in] | images | span of source images. |
[in] | residence | desired destination residence. |
|
pure virtualnoexcept |
Validate input of multiple frames in a single function call.
[in] | images | span of source images. |
[in] | residence | desired destination residence. |
[out] | errors | output span of errors for each image. |