 |
Face Engine SDK
5.8.0
A face detection, recognition and tracking engine.
|
4 #include "IHumanDetectionBatch.h"
6 #include "Types/Human.h"
10 #ifndef DOXYGEN_SHOULD_SKIP_THIS
53 uint32_t detectionPerImageNum,
145 uint32_t detectionPerImageNum,
Span. @detail Not owning data view. It incapsulated pointer to the continuous array with one or more ...
Definition: Span.h:15
virtual Result< FSDKError > validate(Span< const Image > images, Span< const Rect > rects, uint32_t detectionPerImageNum, Span< Result< FSDKError >> errors) const noexcept=0
Validate input of multiple frames in a single function call.
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:59
Object system types and interfaces.
SDK namespace.
Definition: IAGSEstimator.h:8
virtual ResultValue< FSDKError, Human > detectOne(const Image &image, const Rect &rect, HumanDetectionType type=HDT_BOX) const noexcept=0
Detect one person on input image.
virtual Result< FSDKError > validate(Span< const Image > images, Ref< IHumanDetectionBatch > detectionBatch, Span< Result< FSDKError >> errors) const noexcept=0
Validate input of multiple frames in a single function call.
human body detector interface.
Definition: IHumanDetector.h:36
virtual ResultValue< FSDKError, Ref< IHumanDetectionBatch > > detect(Span< const Image > images, Span< const Rect > rects, uint32_t detectionPerImageNum, HumanDetectionType type=HDT_BOX) const noexcept=0
Batched detect of human bodies.
@ HDT_ALL
Get all supported parameters.
Definition: IHumanDetector.h:26
@ HDT_BOX
Get bounding boxes of human bodies.
Definition: IHumanDetector.h:24
@ HDT_POINTS
Get 17 keypoints of human, with score for each one.
Definition: IHumanDetector.h:25
virtual ResultValue< FSDKError, IHumanDetectionBatchPtr > redetect(Span< const Image > images, Ref< IHumanDetectionBatch > detectionBatch, HumanDetectionType type=HDT_BOX) const noexcept=0
Batched redetect humans on multiple images based on the detection results for the previous frames.
Detection structure. @detail Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
virtual ResultValue< FSDKError, IHumanDetectionBatchPtr > redetect(Span< const Image > images, Span< Span< const Detection >> detections, HumanDetectionType type=HDT_BOX) const noexcept=0
Batched redetect humans on multiple images based on the detection results for the previous frames.
A structure that encapsulates an action result enumeration.
Definition: Result.h:30
Image.
Definition: Image.h:38
Smart pointer for reference counted objects.
Definition: Ref.h:26
virtual Result< FSDKError > validate(Span< const Image > images, Span< Span< const Detection >> detections, Span< Span< Result< FSDKError >>> errors) const noexcept=0
Validate input of multiple frames in a single function call.
virtual ResultValue< FSDKError, Human > redetectOne(const Image &image, const Detection &detection, HumanDetectionType type=HDT_BOX) const noexcept=0
redetect one person from input image.
Base strong reference counted object interface.
Definition: IRefCounted.h:36
HumanDetectionType
Human detection type enumeration.
Definition: IHumanDetector.h:23
Addon for Result to output some value aside the result. Specialization for copiable types.
Definition: ResultValue.h:25