Face Engine SDK  4.7.0
A face detection, recognition and tracking engine.
IAGSEstimator.h
1 #pragma once
2 
3 #include <fsdk/IObject.h>
4 #include <fsdk/FSDKError.h>
5 #include <fsdk/Optional.h>
6 #include <fsdk/Types.h>
7 
8 namespace fsdk {
9 
10 #ifndef DOXYGEN_SHOULD_SKIP_THIS
12 #endif
13 
27  const fsdk::Image& image,
28  const fsdk::Detection& detection) const noexcept = 0;
29 
40  virtual Result<FSDKError>
42  const fsdk::Span<const fsdk::Image> images,
43  const fsdk::Span<const fsdk::Detection> detections,
44  fsdk::Span<float> out) const noexcept = 0;
45  };
46 
47 } // namespace fsdk
fsdk::Span
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition: Span.h:14
DECLARE_SMARTPTR
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
fsdk
SDK namespace.
Definition: IAGSEstimator.h:8
fsdk::IAGSEstimator::estimate
virtual ResultValue< FSDKError, float > estimate(const fsdk::Image &image, const fsdk::Detection &detection) const noexcept=0
Estimate the ags.
fsdk::Result< FSDKError >
fsdk::IAGSEstimator
Approximate Garbage Score estimator interface.
Definition: IAGSEstimator.h:18
fsdk::Image
Image.
Definition: Image.h:38
fsdk::IAGSEstimator::estimate
virtual Result< FSDKError > estimate(const fsdk::Span< const fsdk::Image > images, const fsdk::Span< const fsdk::Detection > detections, fsdk::Span< float > out) const noexcept=0
Estimate ags of multiple frames in a single estimate function call.
fsdk::IRefCounted
Base strong reference counted object interface.
Definition: IRefCounted.h:36
fsdk::BaseDetection
Face detection. @detail Stores a detected face bounding box within a source image frame as well as de...
Definition: Detection.h:10
fsdk::ResultValue
Addon for Result to output some value aside the result. Specialization for copiable types.
Definition: ResultValue.h:21