Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCV Lip Segmentation

How do people usually extract the shape of the lips once the mouth region is found (in my case using haar cascade)? I tried color segmentation and edge/corner detection but they're very inaccurate for me. I need to find the two corners and the very upper and lower lip at the center. I've heard things about active appearance models but I'm having trouble understanding how to use this with python and I don't have enough context to figure out if this is even the conventional method for detecting different parts of the lips. Is that my best choice or do I have other options? If I should use it, how would I get started with it using python and simplecv?

like image 386
user1136342 Avatar asked Nov 13 '22 11:11

user1136342


1 Answers

Here are two papers for lip segmentation using edge detection and color segmentation. Try them out.

paper1, paper2

like image 78
Abid Rahman K Avatar answered Dec 29 '22 12:12

Abid Rahman K