{"id":13676956,"url":"https://github.com/mesutpiskin/face-detection-and-recognition","last_synced_at":"2026-01-27T05:35:10.504Z","repository":{"id":12722752,"uuid":"72188572","full_name":"mesutpiskin/face-detection-and-recognition","owner":"mesutpiskin","description":":hurtrealbad:C# Face detection and recognition with EmguCV. Eigenfaces, Fisherfaces and LBPH algorithms.","archived":false,"fork":false,"pushed_at":"2022-03-07T19:15:36.000Z","size":1524,"stargazers_count":208,"open_issues_count":4,"forks_count":76,"subscribers_count":21,"default_branch":"master","last_synced_at":"2024-02-12T23:13:36.321Z","etag":null,"topics":["csharp","emgucv","face-detection","face-recognition","image-processing","opencv"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mesutpiskin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-10-28T08:24:00.000Z","updated_at":"2024-02-12T15:15:54.000Z","dependencies_parsed_at":"2022-08-07T07:00:38.873Z","dependency_job_id":null,"html_url":"https://github.com/mesutpiskin/face-detection-and-recognition","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesutpiskin%2Fface-detection-and-recognition","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesutpiskin%2Fface-detection-and-recognition/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesutpiskin%2Fface-detection-and-recognition/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesutpiskin%2Fface-detection-and-recognition/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mesutpiskin","download_url":"https://codeload.github.com/mesutpiskin/face-detection-and-recognition/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251456073,"owners_count":21592290,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","emgucv","face-detection","face-recognition","image-processing","opencv"],"created_at":"2024-08-02T13:00:35.116Z","updated_at":"2026-01-27T05:35:10.499Z","avatar_url":"https://github.com/mesutpiskin.png","language":"C#","funding_links":[],"categories":["Tutorials","Uncategorized","Face Recognition"],"sub_categories":["Face detection","Uncategorized"],"readme":"English | [Türkçe](./README.tr-TR.md)\n\n\u003cdiv align=\"center\"\u003e\n\n\u003cimg width=\"300\" src=\"./static/head.png\"/\u003e\n\n\u003ch1 align=\"center\"\u003eFace Detection and Recognition with C# EmguCV\u003c/h1\u003e\n\n\u003c/div\u003e\n\n\n\n### What is Emgu CV?\n\nEmgu CV is a cross platform .Net wrapper to the OpenCV image processing library. Allowing OpenCV functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython etc. The wrapper can be compiled by Visual Studio, Xamarin Studio and Unity, it can run on Windows, Linux, Mac OS X, iOS, Android and Windows Phone.\n\n### Algorithms\n\n- Blog post for [Haar Cascade Classifier](http://mesutpiskin.com/blog/321.html)\n- Blog post for [Eigenfaces, Fisherfaces, LBPH](http://mesutpiskin.com/blog/opencv-yuz-tanima-eigenfaces-fisherfaces-lbph.html)\n- \u003ca href=\"https://github.com/mesutpiskin/computer-vision-guide\"\u003eImage Processing and Computer Vision Documentation Project (EN, TR)\u003c/a\u003e\n\n\u003cimg  width=\"600\" src=\"./static/workflow.svg\"/\u003e\n\n\u003cbr/\u003e\n\n**_Eigenfaces_** refers to an appearance-based approach to face recognition that seeks to capture the variation in a collection of face images and use this information to encode and compare images of individual faces in a holistic (as opposed to a parts-based or feature-based) manner.\n\nSpecifically, the eigenfaces are the principal components of a distribution of faces, or equivalently, the eigenvectors of the covariance matrix of the set of face images, where an image with N pixels is considered a point (or vector) in N-dimensional space. The idea of using principal components to represent human faces was developed by Sirovich and Kirby (Sirovich and Kirby 1987) and used by Turk and Pentland (Turk and Pentland 1991) for face detection and recognition.\n\nThe Eigenface approach is considered by many to be the first working facial recognition technology, and it served as the basis for one of the top commercial face recognition technology products. Since its initial development and publication, there have been many extensions to the original method and many new developments in automatic face recognition systems. Eigenfaces is still often considered as a baseline comparison method to demonstrate the minimum expected performance of such a system.\n\nThe **_Viola–Jones_** object detection framework is the first object detection framework to provide competitive object detection rates in real-time proposed in 2001 by Paul Viola and Michael Jones. Although it can be trained to detect a variety of object classes, it was motivated primarily by the problem of face detection.\n\n\u003cimg width=\"500\" src=\"https://preview.ibb.co/cxdBpp/Screen_Shot_2018_09_11_at_16_45_51.png\"/\u003e\n\n### Requirements\n\n- [Visual Studio](https://visualstudio.microsoft.com/)\n- Min [EmguCV 2.2.1](https://sourceforge.net/projects/emgucv/files/emgucv/2.2.1/)\n\n\n### Hot to Run?\n\n- Download or clone project\n\n```sh\ngit clone https://github.com/mesutpiskin/face-detection-and-recognition.git\n```\n\n- Update the **./Config.cs** file to change configuration settings.\n- Build and run project with Visual Studio (Suggested 2017+ version)\n\n\n### Video\n\n\u003ca href=\"https://youtu.be/0wxWdCc_TFo\"\u003e\n\u003cimg width=\"500\" src=\"./static/video.png\"/\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmesutpiskin%2Fface-detection-and-recognition","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmesutpiskin%2Fface-detection-and-recognition","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmesutpiskin%2Fface-detection-and-recognition/lists"}