Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any C# facial recognition libraries that work?

Tags:

c#

search

Are there any C# facial recognition libraries that work? I would like to locate people in my data base by having them stare in a camera :-). This is not used for security or authentication just to help with a quick lookup so if it is good enough to narrow down a list of people that would be a win.

like image 848
Jamey McElveen Avatar asked Oct 20 '10 13:10

Jamey McElveen


People also ask

Is there such thing as C+?

C+ (grade), an academic grade. C++, a programming language. C with Classes, predecessor to the C++ programming language. ANSI C, a programming language (as opposed to K&R C)

Why is C named so?

Because a and b and c , so it's name is C. C came out of Ken Thompson's Unix project at AT&T. He originally wrote Unix in assembly language. He wrote a language in assembly called B that ran on Unix, and was a subset of an existing language called BCPL.

How many C languages are there?

Three Critical Programming Languages C, the first of the so-called “C family” of programming languages, is one of the older languages, developed by Dennis Ritchie at Bell Laboratories in 1972 and released in 1978. C++ followed in the next decade, and C# didn't emerge until the 21st century.

What does C++ have that C does not?

C++ was developed by Bjarne Stroustrup in 1979. C does no support polymorphism, encapsulation, and inheritance which means that C does not support object oriented programming. C++ supports polymorphism, encapsulation, and inheritance because it is an object oriented programming language.


1 Answers

You can look into Microsoft's Face API:

https://www.microsoft.com/cognitive-services/en-us/face-api/documentation/overview

like image 143
Flea Avatar answered Sep 20 '22 09:09

Flea