CS160 Class Project - Face Detection

For my Software Engineering class project, I along with 3 other people was tasked with creating a web service that accepted video uploads, ran a face detection neural network on them, and drew delaunay triangles on the face. I was responsible for the server routing, database, and front end.

Here’s a video of the final result:

We finished the minimum viable project early in the semester, so we decided to implement live video streaming! This was considerably more difficult to get working than the file uploading was, but we managed it. Demo video of live streaming:

Stack

Server-side I went with Node.js, with Postgres, Sequelize ORM, Socket.io for streaming, and Google Sign In for authentication.

The frontend was built with React and Redux. Styling was done with RMWC using a CSS-in-JS approach.

Dean Johnson built the processing application in C++ using FFMPEG, OpenFace, and EyeLike.

Streaming

The streaming was tricky, as it involved simultaneously uploading and downloading video in real time. I used websockets with Socket.io’s stream functionality to tackle this. Dean was able to get the face processing up to around 40fps (props to him!), so the speed of the neural network itself was solved. What did prove difficult was the video encoding. None of us on the team had prior experience working with video, but we learned a lot.

Video captured from the webcam comes in as basic WebM/VP8 format and codec. If you were to just pipe that incoming stream to a file, it results in a working WebM video. The problem is that there seems to be some kind of header at the beginning of the file that is necessary; if you don’t have it you can’t read the video. Since the processing takes a few seconds to spin up, we had to find a way around this.

The solution was RTSP streaming. Dean set up the processing to accept an RTSP URL as an input, so the final pipeline looked something like this:

  • Client opens a socket stream with server, starts piping video
  • Node receives video stream, pipes it to FFMPEG
  • FFMPEG serves it with this handy RTSP server at a randomized local address
  • Node fires up the processing application and sends the created RTSP address to it
  • The processing outputs the video stream (with triangles drawn) to STDOUT
  • Node grabs that STDOUT, creates a reverse stream back down to the client through the socket, and sends the video
  • The client receives the stream with the video and injects it into an HTML5 video player using this handy-dandy library

We ended up with about 6-8 seconds of lag and couldn’t get it any better than that before the project needed to be presented. We suspected that it was due to the RTSP streaming, but we couldn’t figure a way to cut it out.

Thoughts

All in all, I thought this project was a resounding success. It was one of the few group projects I’ve been a part of that was big enough to have work for more than one person.

I enjoyed Redux but found it to be overly verbose; currently I’m looking at Undux.

The source code for the processing, server, and frontend is all on GitHub.

Got feedback or questions?

Send a comment