![]() |
Face Engine SDK
5.17.0
A face detection, recognition and tracking engine.
|
Image quality estimator interface. More...
#include <IQualityEstimator.h>
Public Member Functions | |
| virtual Result< FSDKError > | estimate (const Image &warp, Quality &quality) const noexcept=0 |
| Estimate the quality. | |
| virtual Result< FSDKError > | estimate (Span< const Image > warps, Span< Quality > quality) const noexcept=0 |
| Estimate the quality of multiple warped images in a single estimate function call. | |
| virtual Result< FSDKError > | estimate (const Image &warp, SubjectiveQuality &quality) const noexcept=0 |
| Estimate the quality. | |
| virtual Result< FSDKError > | estimate (Span< const Image > warps, Span< SubjectiveQuality > quality) const noexcept=0 |
| Estimate the subjective quality of multiple warped images in a single estimate function call. | |
| virtual Result< FSDKError > | validate (Span< const Image > warps, Span< Result< FSDKError >> errors) const noexcept=0 |
| Validate input of multiple frames in a single function call. | |
Image quality estimator interface.
| virtual Result<FSDKError> fsdk::IQualityEstimator::estimate | ( | const Image & | warp, |
| Quality & | quality | ||
| ) | const [pure virtual] |
| virtual Result<FSDKError> fsdk::IQualityEstimator::estimate | ( | Span< const Image > | warps, |
| Span< Quality > | quality | ||
| ) | const [pure virtual] |
Estimate the quality of multiple warped images in a single estimate function call.
| [in] | warps | span of images with warped faces. |
| [out] | quality | output quality span. |
| virtual Result<FSDKError> fsdk::IQualityEstimator::estimate | ( | const Image & | warp, |
| SubjectiveQuality & | quality | ||
| ) | const [pure virtual] |
| virtual Result<FSDKError> fsdk::IQualityEstimator::estimate | ( | Span< const Image > | warps, |
| Span< SubjectiveQuality > | quality | ||
| ) | const [pure virtual] |
Estimate the subjective quality of multiple warped images in a single estimate function call.
| [in] | warps | span of images with warped faces. |
| [out] | quality | output SubjectiveQuality span. |
| virtual Result<FSDKError> fsdk::IQualityEstimator::validate | ( | Span< const Image > | warps, |
| Span< Result< FSDKError >> | errors | ||
| ) | const [pure virtual] |
Validate input of multiple frames in a single function call.
| [in] | warps | span of images with warped faces. |
| [out] | errors | output span of errors for each image. |