VisioForge (c) 2025

Search Results for

    Class CascadeFaceDetector

    Face detector.

    Inheritance
    object
    CascadeFaceDetector
    Implements
    IDisposable
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: VisioForge.Core.CV
    Assembly: VisioForge.Core.CV.dll
    Syntax
    public class CascadeFaceDetector : IDisposable

    Constructors

    CascadeFaceDetector(CascadeFaceDetectorSettings)

    Initializes a new instance of the CascadeFaceDetector class.

    Declaration
    public CascadeFaceDetector(CascadeFaceDetectorSettings settings = null)
    Parameters
    Type Name Description
    CascadeFaceDetectorSettings settings

    The settings.

    Properties

    Settings

    Gets or sets the settings.

    Declaration
    public CascadeFaceDetectorSettings Settings { get; set; }
    Property Value
    Type Description
    CascadeFaceDetectorSettings

    The settings.

    Methods

    Clear()

    Clears.

    Declaration
    public void Clear()

    Dispose()

    Dispose.

    Declaration
    public void Dispose()

    Dispose(bool)

    Dispose.

    Declaration
    protected virtual void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing

    Disposing parameter.

    ~CascadeFaceDetector()

    Finalizes an instance of the CascadeFaceDetector class.

    Declaration
    protected ~CascadeFaceDetector()

    Process(RAWImage, out List<CVFace>)

    Processes the specified source.

    Declaration
    public void Process(RAWImage source, out List<CVFace> facesList)
    Parameters
    Type Name Description
    RAWImage source

    The source.

    List<CVFace> facesList

    The faces list.

    Process(RAWImage, TimeSpan)

    Process.

    Declaration
    public CVFace[] Process(RAWImage frame, TimeSpan timestamp)
    Parameters
    Type Name Description
    RAWImage frame

    The frame.

    TimeSpan timestamp

    Timestamp.

    Returns
    Type Description
    CVFace[]

    The CVFace.

    Process(VideoFrame)

    Process.

    Declaration
    public CVFace[] Process(VideoFrame frame)
    Parameters
    Type Name Description
    VideoFrame frame

    The frame.

    Returns
    Type Description
    CVFace[]

    The CVFace.

    Events

    OnFaceDetected

    Face detected event.

    Declaration
    public event EventHandler<CVFaceDetectedEventArgs> OnFaceDetected
    Event Type
    Type Description
    EventHandler<CVFaceDetectedEventArgs>

    Implements

    IDisposable