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
Human.h
1 #pragma once
2 
3 #include "Types.h"
4 #include "Optional.h"
5 #include "fsdk/Types/HumanLandmarks.h"
6 
7 namespace fsdk {
8 
9  struct Human {
10  typedef float ElementType;
11 
12  fsdk::Image img;
15  bool isValid() const {
16  return detection.isValid() && img.isValid();
17  }
18 
19  explicit Human() = default;
20  };
21 }
Common data types and structures.
bool isValid() const noexcept
Checks whether a detection is valid.
Definition: Detection.h:34
Definition: Optional.h:14
Definition: Human.h:9
Image.
Definition: Image.h:37
bool isValid() const noexcept
Definition: Image.h:672