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
IMedicalMaskEstimator.h
1 #pragma once
2 
3 #pragma once
4 
5 #include <fsdk/IObject.h>
6 #include <fsdk/FSDKError.h>
7 #include <fsdk/Optional.h>
8 #include <fsdk/Types.h>
9 
10 namespace fsdk {
11 
12 #ifndef DOXYGEN_SHOULD_SKIP_THIS
13  DECLARE_SMARTPTR(IMedicalMaskEstimator);
14 #endif
15 
20  enum class MedicalMask {
21  Mask = 0,
22  NoMask,
24  };
25 
30  enum class MedicalMaskExtended {
31  Mask = 0,
32  NoMask,
35  };
36 
41  enum class DetailedMaskType {
42  CorrectMask = 0,
44  ClearFace,
47  FullMask,
48  Count
49  };
50 
60 
61  // scores
62  float maskScore;
63  float noMaskScore;
65 
66  float scores[static_cast<int>(DetailedMaskType::Count)];
67 
73  inline float getScore(DetailedMaskType type) const;
74  };
83  // scores
84  float maskScore;
85  float noMaskScore;
88  };
89 
103  virtual Result<FSDKError>
104  estimate(
105  const Image& warp,
106  MedicalMaskEstimation& estimation) const noexcept = 0;
107 
116  virtual Result<FSDKError>
117  estimate(
118  const Image& warp,
119  MedicalMaskEstimationExtended& estimation) const noexcept = 0;
120 
130  virtual Result<FSDKError>
131  estimate(
132  const Image& image,
133  const Detection& detection,
134  MedicalMaskEstimation& estimation) const noexcept = 0;
135 
145  virtual Result<FSDKError>
146  estimate(
147  const Image& image,
148  const Detection& detection,
149  MedicalMaskEstimationExtended& estimation) const noexcept = 0;
150 
161  virtual Result<FSDKError> estimate(
162  Span<const Image> warps,
163  Span<MedicalMaskEstimation> estimations) const noexcept = 0;
164 
175  virtual Result<FSDKError> estimate(
176  Span<const Image> warps,
177  Span<MedicalMaskEstimationExtended> estimations) const noexcept = 0;
178 
190  virtual Result<FSDKError> estimate(
191  Span<const Image> images,
192  Span<const Detection> detections,
193  Span<MedicalMaskEstimation> estimations) const noexcept = 0;
194 
206  virtual Result<FSDKError> estimate(
207  Span<const Image> images,
208  Span<const Detection> detections,
209  Span<MedicalMaskEstimationExtended> estimations) const noexcept = 0;
220  virtual Result<FSDKError>
221  validate(
222  Span<const Image> warps,
223  Span<Result<FSDKError>> errors) const noexcept = 0;
224 
236  virtual Result<FSDKError>
237  validate(
238  Span<const Image> images,
239  Span<const Detection> detections,
240  Span<Result<FSDKError>> errors) const noexcept = 0;
241  };
242 
243  /*
244  Implementation details.
245  */
247  switch (type) {
254  return scores[static_cast<int>(type)];
255  default:
256  return 0.f;
257  }
258  }
259 
260 } // namespace fsdk
clear face - no mask on the face
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.
no medical mask on the face
mask is not on the right place
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
correct mask on the face (mouth and nose are covered correctly)
A structure that encapsulates an action result enumeration.
Definition: Result.h:29
Common data types and structures.
medical mask is on the face
face is covered with not a medical mask or a full mask
MedicalMaskExtended
MedicalMask estimator output enum. This enum contains all possible extended estimation results...
Definition: IMedicalMaskEstimator.h:30
Object system types and interfaces.
float occludedFaceScore
face is occluded by something score
Definition: IMedicalMaskEstimator.h:87
Common SDK error codes.
float noMaskScore
no medical mask on the face score
Definition: IMedicalMaskEstimator.h:63
MedicalMask result
estimation result (
Definition: IMedicalMaskEstimator.h:58
Base strong reference counted object interface.
Definition: IRefCounted.h:36
float noMaskScore
no medical mask on the face score
Definition: IMedicalMaskEstimator.h:85
DetailedMaskType
MedicalMask estimator output enum. This enum contains all type of DetailedMaskType results...
Definition: IMedicalMaskEstimator.h:41
float occludedFaceScore
face is occluded by something score
Definition: IMedicalMaskEstimator.h:64
float getScore(DetailedMaskType type) const
Returns score of required detailed mask type.
Definition: IMedicalMaskEstimator.h:246
MedicalMask estimator interface.
Definition: IMedicalMaskEstimator.h:94
float maskScore
medical mask is on the face score
Definition: IMedicalMaskEstimator.h:84
MedicalMask estimator output structure. This structure contains the result of estimation (...
Definition: IMedicalMaskEstimator.h:81
float maskNotInPlace
mask is not on the right place
Definition: IMedicalMaskEstimator.h:86
clear face with a mask around of a chin, mask does not cover anything in the face region (from mouth ...
Image.
Definition: Image.h:38
MedicalMask estimator output structure. This structure contains the result of estimation (...
Definition: IMedicalMaskEstimator.h:57
virtual Result< FSDKError > estimate(const Image &warp, MedicalMaskEstimation &estimation) const noexcept=0
Estimate MedicalMask probabilities.
MedicalMask
MedicalMask estimator output enum. This enum contains all possible estimation results.
Definition: IMedicalMaskEstimator.h:20
float maskScore
medical mask is on the face score
Definition: IMedicalMaskEstimator.h:62
MedicalMaskExtended result
estimation result (
Definition: IMedicalMaskEstimator.h:82
DetailedMaskType maskType
detailed type (
Definition: IMedicalMaskEstimator.h:59
face is covered with a full mask (such as balaclava, sky mask, etc.)
Detection structure. Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
face is occluded by something
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14
float scores[static_cast< int >(DetailedMaskType::Count)]
detailed estimation scores
Definition: IMedicalMaskEstimator.h:66