Face Engine SDK
5.23.1
A face detection, recognition and tracking engine.
|
Head pose angles estimator interface. More...
#include <IHeadPoseEstimator.h>
Public Member Functions | |
virtual Result< FSDKError > | estimate (const Image &image, const Detection &detection, HeadPoseEstimation &out) const noexcept=0 |
Estimate the angles. | |
virtual Result< FSDKError > | estimate (Span< const Image > images, Span< const Detection > detections, Span< HeadPoseEstimation > out) const noexcept=0 |
Estimate headpose angles of multiple frames in a single estimate function call. | |
virtual Result< FSDKError > | validate (Span< const Image > images, Span< const Detection > detections, Span< Result< FSDKError >> errors) const noexcept=0 |
Validate input of multiple frames in a single function call. |
Head pose angles estimator interface.
Estimated angles are:
virtual Result<FSDKError> fsdk::IHeadPoseEstimator::estimate | ( | const Image & | image, |
const Detection & | detection, | ||
HeadPoseEstimation & | out | ||
) | const [pure virtual] |
virtual Result<FSDKError> fsdk::IHeadPoseEstimator::estimate | ( | Span< const Image > | images, |
Span< const Detection > | detections, | ||
Span< HeadPoseEstimation > | out | ||
) | const [pure virtual] |
Estimate headpose angles of multiple frames in a single estimate function call.
[in] | images | span of source images. |
[in] | detections | span of detection coordinates in corresponding source images space. |
[out] | out | estimations array of corresponding images. |
virtual Result<FSDKError> fsdk::IHeadPoseEstimator::validate | ( | Span< const Image > | images, |
Span< const Detection > | detections, | ||
Span< Result< FSDKError >> | errors | ||
) | const [pure virtual] |
Validate input of multiple frames in a single function call.
[in] | images | span of source images. |
[in] | detections | span of detection coordinates in corresponding source images space. |
[out] | errors | output span of errors for each image. |