Class HeadPoseEstimator
An abstract base class that provides functionality to estimate human head pose from face landmark.
Implements
System.IDisposable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FaceRecognitionDotNet.Extensions
Assembly: FaceRecognitionDotNet.dll
Syntax
public abstract class HeadPoseEstimator : DisposableObject, IDisposable
Methods
| Improve this Doc View SourceRawPredict(IDictionary<FacePart, IEnumerable<FacePoint>>)
Returns a head pose estimated from face parts locations.
Declaration
protected abstract HeadPose RawPredict(IDictionary<FacePart, IEnumerable<FacePoint>> landmark)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IDictionary<FacePart, System.Collections.Generic.IEnumerable<FacePoint>> | landmark | The dictionary of face parts locations (eyes, nose, etc). |
Returns
| Type | Description |
|---|---|
| HeadPose | A head pose estimated from face parts locations. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException |
|
Implements
System.IDisposable