clmtrackr icon indicating copy to clipboard operation
clmtrackr copied to clipboard

disable opened mouth

Open aymansaeed87 opened this issue 9 years ago • 1 comments

I need to keep mouth closed , need to remove points between mouth shape (open-close points)

aymansaeed87 avatar Feb 07 '16 05:02 aymansaeed87

Just use the tracker.getCurrentPosition() method and use the according points to do whatever you need.

http://auduno.github.io/clmtrackr/media/facemodel_numbering_new.png

var pos = tracker.getCurrentPosition();
// if any position is detected draw the other steps
 if ( pos ) {
            // your code here
}

andrevenancio avatar Apr 01 '16 03:04 andrevenancio