Quick Face Recognition With An FPGA

It’s the 21st century, and according to a lot of sci-fi movies we should have perfected AI by now, right? Well we are getting there, and this project from a group of Cornell University students titled, “FPGA kNN Recognition” is a graceful attempt at facial recognition.

For the uninitiated, the K-nearest neighbors or kNN Algorithm is a very simple classification algorithm that uses similarities between given sets of data and a data point being examined to predict where the said data point belongs. In this project, the authors use a camera to take an image and then save its histogram instead of the entire image. To train the network, the camera is made to take mug-shots of sorts and create a database of histograms that are tagged to be for the same face. This process is repeated for a number of faces and this is shown as a relatively quick process in the accompanying video.

The process of classification or ‘guess who’, takes an image from the camera and compares it with all the faces already stored. The system selects the one with the highest similarity and the results claimed are pretty fantastic, though that is not the brilliant part. The implementation is done using an FPGA which means that the whole process has been pipe-lined to reduce computational time. This makes the project worth a look especially for people looking into FPGA based development. There is a hardware implementation of a k-distance calculator, sorting and selector. Be sure to read through the text for the sorting algorithm as we found it quite interesting.

Arduino recently released the Arduino MKR4000 board which has an FPGA, and there are many opensource boards out there in the wild that you can easily get started with today. We hope to see some of these in conference badges in the upcoming years.

 

8 thoughts on “Quick Face Recognition With An FPGA

  1. Nice, but I’d like to see a better example. The hardware advances are a little overshadowed by the toy example case. It’s hard to tell how well it actually works without changing lighting/clothing/scene information. Could be overfit.

  2. But a CPU doesn’t run an algorithm – unless you build a CPU in the gateware and you run your code on that.

    The beauty of this FPGA approach is you should be able to take a trained, weighted neural network and synthesise the neural network itself directly in gateware, making it extremely fast for inference, low power, yet flexible.

    1. Well, this isn’t a marketable solution at all. The actual solutions being sold today just recognize that there are clear face shots and send jpegs off for processing semi-realtime. You can buy them today in China running on their off the shelf HiSilicon ARM based camera.

  3. FPGAs definitely run AI algorithms at a mass scale with incredible flexibility to update the application specific Neural Nets as library calls They accelerate the whole workload readily and at very low power.

Leave a Reply to Luke WestonCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.