Show / Hide Table of Contents

Class EyeBlinkDetector

An abstract base class that provides functionality to detect human eye's blink from face landmark.

Inheritance
System.Object
DisposableObject
EyeBlinkDetector
EyeAspectRatioBaseEyeBlinkDetector
Implements
System.IDisposable
Inherited Members
DisposableObject.IsDisposed
DisposableObject.ThrowIfDisposed()
DisposableObject.DisposeManaged()
DisposableObject.DisposeUnmanaged()
DisposableObject.Dispose()
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 Source

RawDetect(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 true, if the left eye blinks; otherwise, false.

System.Boolean rightBlink

When this method returns, contains true, if the right eye blinks; otherwise, false.

Implements

System.IDisposable
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX