 |
Face Engine SDK
5.23.1
A face detection, recognition and tracking engine.
|
3 #include <fsdk/IObject.h>
4 #include <fsdk/FSDKError.h>
5 #include <fsdk/Optional.h>
6 #include <fsdk/Types.h>
10 #ifndef DOXYGEN_SHOULD_SKIP_THIS
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition: Span.h:14
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
SDK namespace.
Definition: IAGSEstimator.h:8
virtual ResultValue< FSDKError, float > estimate(const Image &image, const Detection &detection) const noexcept=0
Estimate the ags.
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.
Detection structure. @detail Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
Approximate Garbage Score estimator interface.
Definition: IAGSEstimator.h:24
Image.
Definition: Image.h:38
Base strong reference counted object interface.
Definition: IRefCounted.h:37
virtual Result< FSDKError > estimate(Span< const Image > images, Span< const Detection > detections, Span< float > out) const noexcept=0
Estimate ags of multiple frames in a single estimate function call.
Addon for Result to output some value aside the result. Specialization for copiable types.
Definition: ResultValue.h:21