clmtrackr
clmtrackr copied to clipboard
disable opened mouth
I need to keep mouth closed , need to remove points between mouth shape (open-close points)
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
}