|
virtual Result< FSDKError > | estimate (const Image &depth, const Image &rgb, const Detection &detection, const Landmarks5 &landmarks5, DepthRGBEstimation &out) const noexcept=0 |
| Checks whether or not the detection corresponds to the real person. More...
|
|
virtual Result< FSDKError > | estimate (Span< const Image > depths, Span< const Image > rgbs, Span< const Detection > detections, Span< const Landmarks5 > landmarks5, Span< DepthRGBEstimation > outs) const noexcept=0 |
| Checks several detection on several images to see whether or not the detections corresponds to the real persons. More...
|
|
virtual Result< FSDKError > | validate (Span< const Image > depths, Span< const Image > rgbs, Span< const Detection > detections, Span< const Landmarks5 > landmarks5, Span< Result< FSDKError >> errors) const noexcept=0 |
| Validates input of multiple frames in a single function call. More...
|
|
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...
|
|
Depth+RGB estimator interface.
- Note
- This estimator is designed for face analysis using depth map and RGB frame. It works with 16 bit depth map.
- See Also
- IDetector for details about how to get a detection of a face.