Muaaz Khalid
Muaaz Khalid

Reputation: 2249

Find corner points of eyes and Mouth

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.

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

Answers (2)

Dima
Dima

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

Talha Qaiser
Talha Qaiser

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

Related Questions