Face Engine SDK  4.6.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 
26  estimate(
27  const fsdk::Image& image,
28  const fsdk::Detection& detection) const noexcept = 0;
29 
40  virtual Result<FSDKError>
41  estimate(
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
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
Common data types and structures.
Object system types and interfaces.
Common SDK error codes.
Base strong reference counted object interface.
Definition: IRefCounted.h:36
Addon for Result to output some value aside the result. Specialization for copiable types...
Definition: ResultValue.h:21
Image.
Definition: Image.h:37
Approximate Garbage Score estimator interface.
Definition: IAGSEstimator.h:18
virtual ResultValue< FSDKError, float > estimate(const fsdk::Image &image, const fsdk::Detection &detection) const noexcept=0
Estimate the ags.
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:13
Face detection. Stores a detected face bounding box within a source image frame as well as detection...
Definition: Detection.h:10