From the course: Code Clinic: C++

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Intro: Facial recognition

Intro: Facial recognition - C++ Tutorial

From the course: Code Clinic: C++

Start my 1-month free trial

Intro: Facial recognition

(machine running) - [Instructor] Hello and welcome to the fifth problem of the Code Clinic series. This is a challenge to find faces in a photograph. 50 years ago this problem would have been difficult or impossible, the technology and algorithms for facial recognition were just being created. Computers were barely powerful enough to run the algorithms and it could take hours to recognize one face. Today we have real-time performance and use it as a security device on some mobile computers. In this challenge we're asking our authors to demonstrate how to do this with their programming language. We've challenged our authors to create a function that does the following, first the function should accept a JPEG, JIF, or PNG file of varying dimensions. Their function should then identify the number of faces in that image. There may not be any faces in which case the function should return zero. If the author chooses to go for…

Contents