Face Engine SDK
5.8.0
A face detection, recognition and tracking engine.
Human.h
1
#pragma once
2
3
#include "fsdk/Optional.h"
4
#include <fsdk/Types/Detection.h>
5
#include "fsdk/Types/HumanLandmarks.h"
6
7
8
namespace
fsdk
{
9
10
struct
Human
{
11
typedef
float
ElementType;
12
13
fsdk::Image
img;
14
fsdk::Detection
detection;
15
Optional<fsdk::HumanLandmarks17> landmarks17;
16
bool
isValid()
const
{
17
return
detection.
isValid
() && img.
isValid
();
18
}
19
20
explicit
Human
() =
default
;
21
};
22
}
fsdk
SDK namespace.
Definition:
IAGSEstimator.h:8
fsdk::Detection::isValid
bool isValid() const noexcept
Checks whether a detection is valid.
Definition:
Detection.h:116
fsdk::Human
Definition:
Human.h:10
fsdk::Detection
Detection structure. @detail Stores a detected bounding box within a source image rect.
Definition:
Detection.h:10
fsdk::Image::isValid
bool isValid() const noexcept
Definition:
Image.h:757
fsdk::Image
Image.
Definition:
Image.h:38
fsdk.framework
Headers
Types
Human.h
Generated on Fri Jun 17 2022 12:22:02 for Face Engine SDK by
1.8.20