Skip to content

phanithken/DotnetFaceDetect

Repository files navigation

DotnetFaceDetect

Usage

// START DETECT
private FaceDetection _faceDetection = new FaceDetection();
_faceDetection.OnDetectFace += new FaceDetection.FaceDetectedHandler(GetFacePosition);
_faceDetection.StartDetect();

private void GetFacePosition(object sender, FaceDetectEventArgs e)
{
    // number of people
    var people = e.ResultFrame.Count
}

// STOP DETECT
_faceDetection.StopDetect();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages