Face Engine SDK
4.6.0
A face detection, recognition and tracking engine.
|
Face detection. Stores a detected face bounding box within a source image frame as well as detection confidence score. More...
#include <Detection.h>
Public Types | |
typedef Type | ElementType |
Public Member Functions | |
BaseDetection () noexcept | |
Initializes a default detection. More... | |
template<typename OtherType > | |
BaseDetection (const BaseDetection< OtherType > &other) | |
bool | isValid () const noexcept |
Checks whether a detection is valid. More... | |
template<typename OtherType > | |
BaseDetection & | operator= (const BaseDetection< OtherType > &other) noexcept |
Public Attributes | |
BaseRect< Type > | rect |
Object bounding box. | |
float | score |
Object detection score. | |
Face detection. Stores a detected face bounding box within a source image frame as well as detection confidence score.
|
inlinenoexcept |
Initializes a default detection.
Detection is initialized in an invalid state.
|
inlinenoexcept |
Checks whether a detection is valid.
A detection is considered valid if it has a valid rect and score in [0..1] range.