Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to simulate a given facial expression on a face image. With Facial expressions like smile, anger,disgust, surprise, fear etc.,

I have googled and found methods to detect facial expressions but not to simulate a given kind of expression.

Can anyone suggest any sample code/algorithms.

Platform is C++

share|improve this question
11  
2  
Maybe like this : :). bool smile; cout << ':' << (smile) ? ')' : '('; – Bartek Banachewicz Feb 15 at 17:27
The reason to post this is many apps are available for facial expressions like [Morfo] (itunes.apple.com/in/app/morfo/id418900007?mt=8) and [Picturespeak] (play.google.com/store/apps/…)... So, I thought may be someone could give some references for me to start.... – 2vision2 Feb 16 at 3:30

closed as not a real question by karlphillip, Shai, Roman C, hjpotter92, MrSmith42 Feb 17 at 17:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

that's a pretty advanced problem, i'd say ;)

you could try to build a trimesh(delauny) from landmark/asm/aam models, move some points, say the corners of the mouth, and distort your original texture from that.

chapter 6 & 7 of the "MasteringOpenCV" book might be helpful

https://github.com/MasteringOpenCV/code/Chapter7_HeadPoseEstimation

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.