Face Engine SDK  5.34.0
A face detection, recognition and tracking engine.
fsdk::INeckOcclusionEstimator Struct Referenceabstract

NeckOcclusionEstimator estimator interface. The estimator determines if the person's neck is covered with clothes or not. More...

#include <INeckOcclusionEstimator.h>

Inheritance diagram for fsdk::INeckOcclusionEstimator:
fsdk::IRefCounted

Public Member Functions

virtual Result< FSDKErrorestimate (const Image &image, const Detection &detection, NeckOcclusionEstimation &estimation) const noexcept=0
 Estimate if the person's neck is covered with clothes or not. More...
 
virtual Result< FSDKErrorestimate (Span< const Image > images, Span< const Detection > detections, Span< NeckOcclusionEstimation > estimations) const noexcept=0
 Estimate if the persons' necks are covered with clothes or not in multiple frames in a single call. More...
 
virtual Result< FSDKErrorvalidate (Span< const Image > images, Span< const Detection > detections, Span< Result< FSDKError >> errors) const noexcept=0
 Validate input of multiple frames in a single call. More...
 
- Public Member Functions inherited from fsdk::IRefCounted
virtual int32_t retain () noexcept=0
 Increase strong reference count. More...
 
virtual int32_t retainLocked () noexcept=0
 Increase strong reference count thread safely. 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

NeckOcclusionEstimator estimator interface. The estimator determines if the person's neck is covered with clothes or not.

Member Function Documentation

◆ estimate() [1/2]

virtual Result<FSDKError> fsdk::INeckOcclusionEstimator::estimate ( const Image image,
const Detection detection,
NeckOcclusionEstimation estimation 
) const
pure virtualnoexcept

Estimate if the person's neck is covered with clothes or not.

Parameters
[in]imagesource image
[in]detectionface detection coordinates in image space
[out]estimationestimation result.
Returns
Result with error code.
See also
NeckOcclusionEstimation, Image, Detection, Result and FSDKError for details.
Note
image format must be R8G8B8,
See also
Format.

◆ estimate() [2/2]

virtual Result<FSDKError> fsdk::INeckOcclusionEstimator::estimate ( Span< const Image images,
Span< const Detection detections,
Span< NeckOcclusionEstimation estimations 
) const
pure virtualnoexcept

Estimate if the persons' necks are covered with clothes or not in multiple frames in a single call.

Parameters
[in]imagesspan of source images.
[in]detectionsspan of face detection coordinates in corresponding source image space.
[out]estimationsspan of estimation results.
Returns
Result with error code.
See also
NeckOcclusionEstimation, Span, Image, Detection, Result and FSDKError for details.
Note
images format must be R8G8B8,
See also
Format.
Note
all spans should be based on user owned continuous collections.
all spans should be equal size.

◆ validate()

virtual Result<FSDKError> fsdk::INeckOcclusionEstimator::validate ( Span< const Image images,
Span< const Detection detections,
Span< Result< FSDKError >>  errors 
) const
pure virtualnoexcept

Validate input of multiple frames in a single call.

Parameters
[in]imagesspan of source images.
[in]detectionsspan of face detection coordinates in corresponding source images space.
[out]errorsoutput span of errors for each image.
Returns
Result with error code.
See also
Span, Image, Detection, Result, FSDKError for details.
Note
images format must be R8G8B8,
See also
Format.
Note
all spans should be based on user owned continuous collections.
all spans should be equal size.

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