Class FaceDetector
An abstract base class that provides functionality to detect face locations from image.
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 FaceDetector : DisposableObject, IDisposable
Methods
| Improve this Doc View SourceRawDetect(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