Face Engine SDK  5.8.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
IOrientationEstimator.h
1 #pragma once
2 
3 #include <fsdk/IObject.h>
4 #include <fsdk/FSDKError.h>
5 #include <fsdk/Types.h>
6 #include <fsdk/Types/OrientationType.h>
7 
8 namespace fsdk {
9 
10 #ifndef DOXYGEN_SHOULD_SKIP_THIS
11  DECLARE_SMARTPTR(IOrientationEstimator);
12 #endif
13 
29  estimate(
30  const Image& image) const noexcept = 0;
31 
42  virtual Result<FSDKError>
43  estimate(
44  Span<const Image> images,
45  Span<OrientationType> out) const noexcept = 0;
46 
57  virtual Result<FSDKError>
58  validate(
59  Span<const Image> images,
60  Span<Result<FSDKError>> errors) const noexcept = 0;
61  };
62 
63 } // namespace fsdk
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
A structure that encapsulates an action result enumeration.
Definition: Result.h:29
Common data types and structures.
virtual Result< FSDKError > validate(Span< const Image > images, Span< Result< FSDKError >> errors) const noexcept=0
Validate input of multiple frames in a single function call.
Object system types and interfaces.
Common SDK error codes.
Base strong reference counted object interface.
Definition: IRefCounted.h:36
virtual ResultValue< FSDKError, OrientationType > estimate(const Image &image) const noexcept=0
Estimate orientation of image (Normal, Right90deg, Left90deg or UpsideDown).
Addon for Result to output some value aside the result. Specialization for copiable types...
Definition: ResultValue.h:25
Image.
Definition: Image.h:38
Image orientation estimator interface.
Definition: IOrientationEstimator.h:18
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14