Show / Hide Table of Contents

Class FaceDetector

An abstract base class that provides functionality to detect face locations from image.

Inheritance
System.Object
DisposableObject
FaceDetector
SimpleFaceDetector
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 FaceDetector : DisposableObject, IDisposable

Methods

| Improve this Doc View Source

RawDetect(MatrixBase, Int32)

Returns an enumerable collection of face location correspond to all faces in specified image.

Declaration
protected abstract IEnumerable<Location> RawDetect(MatrixBase matrix, int numberOfTimesToUpsample)
Parameters
Type Name Description
MatrixBase matrix

The matrix contains a face.

System.Int32 numberOfTimesToUpsample

The number of times to up-sample the image when finding faces.

Returns
Type Description
System.Collections.Generic.IEnumerable<Location>

An enumerable collection of face location correspond to all faces.

Implements

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