From the course: Code Clinic: C++

Unlock the full course today

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

Solution overview: Facial recognition

Solution overview: Facial recognition - C++ Tutorial

From the course: Code Clinic: C++

Start my 1-month free trial

Solution overview: Facial recognition

- [Instructor] I'll start with a demonstration of my solution. A collection of test images are stored in the exercise files for this challenge in the resource folder. Unlike my other solutions, I can't run this from my regular command window because I need it to create a window to display the output images of detected faces. Unix GUI programs display Windows through an x server and by default segin does not automatically start the x server. If I ran this on a Linux machine, or if I had compiled my solution in a Windows based environment, like Visual Studio Community, I could just use my usual command terminal. Instead, I'm running the x server from my Segin 64 terminal and using this x term window to run my solution. I've already navigated to my solution folder, so to run my solution I type in facedetector.exe../resources/graduation.jpeg. This will analyze one of the test images that contains several graduates. Then…

Contents