I have this image, and wanted to detect the eye's and mouth position of image on the screen that could be phone, or tablet using Ionic2.
I've came across this blog Dlib 18.6 released: Make your own object detector! about using dlib C++, and this post Find eyes and mouth in an face image suggests to use OpenCV, but I'm not sure that I can use those libraries with Ionic2.
The expected return result should be similar to something like this:
left_eye: {
top: 150px,
left: 50px,
width: 30px,
height: 15px
}
right_eye: {
top: 150px,
left: 100px,
width: 30px,
height: 15px
}
mouth: {
top: 300px,
left: 75px,
width: 50px,
height: 20px
}
Honestly, I have no idea of how can I get this done for my client project as they want to draw the canvas of the dark circle below the eyes, and find some other dark spot on the face, which is another part of the project.
Hope you guys can help me out, or give me some suggestion of how can I get this done using Ionic2.
Thanks you for your time.