Ask Your Question
0

Facial point detection in ios

asked 2014-04-20 22:42:33 -0600

russ gravatar image

updated 2014-04-21 01:43:12 -0600

berak gravatar image

I am developing a iOS app like perfect 365. I need to detect the facial points of the face like the lips, eyebrows, eyes and nostril. I need to get the x and y coordinates of it? Can someone guide me how can I achieve this in iOS using OpenCV.

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2017-07-25 05:55:50 -0600

Raki gravatar image

updated 2017-07-25 05:59:40 -0600

Haar Classifier is a simple approach you can use for recognizing the facial parts.

As for "getting the coordinates", what do you mean by "coordinates"? Image coordinates or 3D real world coordinates? You need to calibrate your camera if you want to get the real world coordinates. Also, in that case it is not possible with a monocular setup. You need to employ another camera and use stereo-vision techniques to achieve that.

If you mean, however, simply the image coordinates, then after getting the bounding box (resulting from Haar), simply use the width and height information of the rectangle to get its center coordinates.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2014-04-20 22:42:33 -0600

Seen: 357 times

Last updated: Jul 25 '17