Reputation: 47
I'm using opencv and python for face detection, but I need to calculate the face position and get some features like opened eyes and opened mouth. I was thinking to use the vertex values from a face meshgrid.
Does anyone know how to get the meshgrid of a face detected with opencv?
PD: I already used Haar Cascade but it doesn't fit what I need.
Upvotes: 1
Views: 2736
Reputation: 51837
Using a HaarCascade will only return a bounding for a detected face, not a mesh. You should have a look at Jason Saraigh's FaceTracker.
I've used it in c++ alone and with openFrameworks, but I see there's a Python wrapper available
Upvotes: 1