4 #include <fsdk/IHumanDetectionBatch.h> 
    6 #include <fsdk/Types/Human.h> 
    8 #include <fsdk/vlc/future.h> 
   12 #ifndef DOXYGEN_SHOULD_SKIP_THIS 
   54             uint32_t detectionPerImageNum,
 
  146             uint32_t detectionPerImageNum,
 
  208             uint32_t detectionPerImageNum,
 
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro. 
Definition: Def.h:56
 
Get all supported parameters. 
Definition: IHumanDetector.h:27
 
A structure that encapsulates an action result enumeration. 
Definition: Result.h:27
 
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. 
 
virtual HumanBatchFuture redetectAsync(Span< const Image > images, Ref< IHumanDetectionBatch > detectionBatch, HumanDetectionType type=HDT_BOX) const =0
Asynchronously redetects human bodies on multiple images based on the detection results for the previ...
 
virtual HumanBatchFuture detectAsync(Span< const Image > images, Span< const Rect > rectangles, uint32_t detectionPerImageNum, HumanDetectionType type=HDT_BOX) const =0
Asynchronously detects human bodies on multiple images. 
 
vlc::future< IHumanDetectionBatchPtr > HumanBatchFuture
Common alias for IHumanDetector asynchronous interface. 
Definition: IHumanDetector.h:188
 
Smart pointer for reference counted objects. 
Definition: Ref.h:26
 
Object system types and interfaces. 
 
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...
 
Base strong reference counted object interface. 
Definition: IRefCounted.h:37
 
human body detector interface. 
Definition: IHumanDetector.h:37
 
virtual ResultValue< FSDKError, IHumanDetectionBatchPtr > detect(Span< const Image > images, Span< const Rect > rects, uint32_t detectionPerImageNum, HumanDetectionType type=HDT_BOX) const noexcept=0
Batched detect of human bodies. 
 
Get bounding boxes of human bodies. 
Definition: IHumanDetector.h:25
 
Get bounding boxes of human bodies with 17 scored keypoints. 
Definition: IHumanDetector.h:26
 
virtual ResultValue< FSDKError, Human > redetectOne(const Image &image, const Detection &detection, HumanDetectionType type=HDT_BOX) const noexcept=0
redetect one person from input image. 
 
Addon for Result to output some value aside the result. Specialization for copiable types...
Definition: ResultValue.h:21
 
Image. 
Definition: Image.h:38
 
HumanDetectionType
Human detection type enumeration. 
Definition: IHumanDetector.h:24
 
virtual ResultValue< FSDKError, Human > detectOne(const Image &image, const Rect &rect, HumanDetectionType type=HDT_BOX) const noexcept=0
Detect one person on input image. 
 
Detection structure.  Stores a detected bounding box within a source image rect. 
Definition: Detection.h:10
 
Span.  Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14