![]() |
Face Engine SDK
5.2.0
A face detection, recognition and tracking engine.
|
Image orientation estimator interface. More...
#include <IOrientationEstimator.h>
Public Member Functions | |
| virtual ResultValue< FSDKError, OrientationType > | estimate (const Image &image) const noexcept=0 |
| Estimate orientation of image (Normal, Right90deg, Left90deg or UpsideDown). More... | |
| virtual Result< FSDKError > | estimate (Span< const Image > images, Span< OrientationType > out) const noexcept=0 |
| Estimate orientation of several images. More... | |
| virtual Result< FSDKError > | validate (Span< const Image > images, Span< Result< FSDKError >> errors) const noexcept=0 |
| Validate input of multiple frames in a single 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... | |
|
pure virtualnoexcept |
Estimate orientation of image (Normal, Right90deg, Left90deg or UpsideDown).
| input | image |
|
pure virtualnoexcept |
Estimate orientation of several images.
| [in] | images | span of input images, |
| [out] | out | output span of orientation estimations. |
|
pure virtualnoexcept |
Validate input of multiple frames in a single function call.
| [in] | images | images span |
| [out] | errors | output span of errors for each image. |