Projecting New Points onto a Mediapipe Face Mesh
Alright, so let me start by saying: there won't be any code shared this time. While that might be disappointing, I'm not entirely sure to what extent I'm allowed to write and share code on this topic, due to non-compete clauses I may have signed while working with my previous employer, and I'd rather not risk crossing any lines. I will, however, talk about a really cool problem that I was able to solve, and lay out the high level approach that I took to solving it. If you're familiar with Google's Mediapipe , you may know that it provides a powerful framework for detecting vertices on the surface of a subject's face. One limitation of it, however, is that the surface of the mesh produced by Mediapipe stops about halfway up the forehead. For what I was working on at the time, that wasn't enough for us; it was important that we generate vertices that extend to the top of the forehead as well. And after some amount of problem solving and engineering, I ...