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
INaturalLightEstimator.h
1 #pragma once
2 
3 #include <fsdk/IObject.h>
4 #include <fsdk/FSDKError.h>
5 
6 #include <fsdk/Types/Image.h>
7 #include <fsdk/Types/Result.h>
8 #include <fsdk/Types/Span.h>
9 
10 namespace fsdk {
11 
12 #ifndef DOXYGEN_SHOULD_SKIP_THIS
13  DECLARE_SMARTPTR(INaturalLightEstimator);
14 #endif
15 
20  enum class LightStatus : uint8_t {
21  NonNatural = 0,
22  Natural = 1
23  };
24 
33  float score;
34  };
35 
41 
50  virtual Result<FSDKError>
51  estimate(
52  const Image& warp,
53  NaturalLightEstimation& estimation) const noexcept = 0;
54 
65  virtual Result<FSDKError>
66  estimate(
67  Span<const Image> warps,
68  Span<NaturalLightEstimation> estimations) const noexcept = 0;
69 
80  virtual Result<FSDKError>
81  validate(
82  Span<const Image> warps,
83  Span<Result<FSDKError>> errors) const noexcept = 0;
84  };
85 
86 } // namespace fsdk
LightStatus status
estimation result (
Definition: INaturalLightEstimator.h:32
#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
float score
Numerical value in range [0, 1].
Definition: INaturalLightEstimator.h:33
LightStatus
NaturalLight estimator output enum. This enum contains all possible estimation results.
Definition: INaturalLightEstimator.h:20
Object system types and interfaces.
Common SDK error codes.
light is not natural
virtual Result< FSDKError > estimate(const Image &warp, NaturalLightEstimation &estimation) const noexcept=0
Estimate natural light probability.
Base strong reference counted object interface.
Definition: IRefCounted.h:36
NaturalLight estimator interface.
Definition: INaturalLightEstimator.h:40
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.
Definition: Image.h:38
NaturalLight estimator output structure. This structure contains the result of estimation and probabi...
Definition: INaturalLightEstimator.h:31
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14