Class EyeBlinkDetector
An abstract base class that provides functionality to detect human eye's blink 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 EyeBlinkDetector : DisposableObject, IDisposable
Methods
| Improve this Doc View SourceRawDetect(IDictionary<FacePart, IEnumerable<FacePoint>>, out Boolean, out Boolean)
Detects the values whether human eye's blink or not from face landmark.
Declaration
protected abstract void RawDetect(IDictionary<FacePart, IEnumerable<FacePoint>> landmark, out bool leftBlink, out bool rightBlink)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<FacePart, System.Collections.Generic.IEnumerable<FacePoint>> | landmark | The dictionary of face parts locations (eyes, nose, etc). |
System.Boolean | leftBlink | When this method returns, contains |
System.Boolean | rightBlink | When this method returns, contains |
Implements
System.IDisposable