Reputation: 2249
I am able to detect eyes, nose and mouth in a given face using Matlab. Now, I want four more points i.e corners of the eyes and nose. how do i get these points??
This is the Image for corner points of nose.
Red point is showing the point, what I'm looking for.(its just to let you know.. there is no point in original image)
Upvotes: 1
Views: 1833
Reputation: 39429
You can try using corner detectors included in the computer vision system toolbox, such as detectHarrisFeatures
, detectMinEigenFeatures
, or detectFASTFeatures
. However they may give you more points than you want, so you will have to do some parameter tweaking.
Upvotes: 0
Reputation: 48
Active Appearance Model (AAM) could be useful in your case.
AMM is normally used for matching a statistical model of object shape and appearance to a new image and widely used for extracting face features and for head pose estimation.
I believe this could be helpful for you to start with.
Upvotes: 1