Face Engine SDK  5.3.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fsdk::IHumanDetector Struct Referenceabstract

human body detector interface. More...

#include <IHumanDetector.h>

Inheritance diagram for fsdk::IHumanDetector:
fsdk::IRefCounted

Public Member Functions

virtual ResultValue< FSDKError,
Ref< IHumanDetectionBatch > > 
detect (Span< const Image > images, Span< const Rect > rects, uint32_t detectionPerImageNum, HumanDetectionType type=HDT_BOX) const noexcept=0
 
virtual ResultValue< FSDKError,
Human
redetectOne (const Image &image, const Detection &detection, HumanDetectionType type=HDT_BOX) const noexcept=0
 
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. More...
 
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. More...
 
virtual Result< FSDKErrorvalidate (Span< const Image > images, Span< const Rect > rects, uint32_t detectionPerImageNum, Span< Result< FSDKError >> outErrors) const noexcept=0
 Validate input of multiple frames in a single function call. More...
 
virtual Result< FSDKErrorvalidate (Span< const Image > images, Ref< IHumanDetectionBatch > detectionBatch, Span< Result< FSDKError >> outErrors) const noexcept=0
 Validate input of multiple frames in a single function call. More...
 
virtual Result< FSDKErrorvalidate (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. More...
 
- Public Member Functions inherited from fsdk::IRefCounted
virtual int32_t retain () noexcept=0
 Increase strong reference count. More...
 
virtual int32_t release () noexcept=0
 Decrease strong reference count. More...
 
virtual int32_t getRefCount () const noexcept=0
 Get actual strong reference count. More...
 
virtual int32_t retainWeak () noexcept=0
 Increase weak reference count. More...
 
virtual int32_t releaseWeak () noexcept=0
 Decrease weak reference count. More...
 
virtual int32_t getWeakRefCount () const noexcept=0
 Get actual weak reference count. More...
 

Detailed Description

human body detector interface.

Member Function Documentation

virtual ResultValue<FSDKError, IHumanDetectionBatchPtr> fsdk::IHumanDetector::redetect ( Span< const Image images,
Ref< IHumanDetectionBatch detectionBatch,
HumanDetectionType  type = HDT_BOX 
) const
pure virtualnoexcept

Batched redetect humans on multiple images based on the detection results for the previous frames.

Parameters
[in]imagesinput images span; format must be R8G8B8.
[in]detectionBatchresult of detection on the previous frames - Ref with an IHumanDetectionBatch object.
See Also
IHumanDetectionBatch for details.
Parameters
[in]typetype of redetection.
See Also
DetectionType for details.
Returns
ResultValue with error code and IHumanDetectionBatch object
Note
images span should be based on user owned continuous collections.
images span should be the same size with detectionBatch size.
In case if some human from the input detectionBatch was not found the corresponding detection in the output IHumanDetectionBatch object will be invalid.
virtual ResultValue<FSDKError, IHumanDetectionBatchPtr> fsdk::IHumanDetector::redetect ( Span< const Image images,
Span< Span< const Detection >>  detections,
HumanDetectionType  type = HDT_BOX 
) const
pure virtualnoexcept

Batched redetect humans on multiple images based on the detection results for the previous frames.

Parameters
[in]imagesinput images span; format must be R8G8B8.
[in]detectionsinput detections from the previous frames. It is a two dimentional Span. There is one Span of the rectangles for each image.
[in]typetype of redetection.
See Also
DetectionType for details.
Returns
ResultValue with error code and IHumanDetectionBatch object
See Also
IHumanDetectionBatch for details.
Note
all spans should be based on user owned continuous collections.
all spans should be equal size.
If for some of the input detections the redetected human will not be found the appropriate detection in the IHumanDetectionBatch object will be invalid.
virtual Result<FSDKError> fsdk::IHumanDetector::validate ( Span< const Image images,
Span< const Rect rects,
uint32_t  detectionPerImageNum,
Span< Result< FSDKError >>  outErrors 
) const
pure virtualnoexcept

Validate input of multiple frames in a single function call.

Parameters
[in]imagesspan of input images.
[in]rectsspan of rect coords of corresponding source images.
detectionPerImageNummax number of detections per input image.
[out]errorsoutput span of errors for each image.
Returns
Error code;
See Also
FSDKError for details.
Note
all spans should be based on user owned continuous collections.
virtual Result<FSDKError> fsdk::IHumanDetector::validate ( Span< const Image images,
Ref< IHumanDetectionBatch detectionBatch,
Span< Result< FSDKError >>  outErrors 
) const
pure virtualnoexcept

Validate input of multiple frames in a single function call.

Parameters
[in]imagesinput images span.
[in]detectionBatchresult of detection on the previous frames - Ref with an IHumanDetectionBatch object.
See Also
IHumanDetectionBatch for details.
Parameters
[out]errorsoutput span of errors for each image.
Returns
Error code;
See Also
FSDKError for details.
Note
all spans should be based on user owned continuous collections.
virtual Result<FSDKError> fsdk::IHumanDetector::validate ( Span< const Image images,
Span< Span< const Detection >>  detections,
Span< Span< Result< FSDKError >>>  errors 
) const
pure virtualnoexcept

Validate input of multiple frames in a single function call.

Parameters
[in]imagesinput images span.
[in]detectionsinput detections from the previous frames. It is a two dimentional Span. There is one Span of the Detections for each image.
[out]errorsoutput span of errors for each image. It is a two dimentional Span. There is one Span of the errors for each image.
Returns
Error code;
See Also
FSDKError for details.
Note
all spans should be based on user owned continuous collections.

The documentation for this struct was generated from the following file: