ranger101
ranger101

Reputation: 1204

How to detect front and side view of human face using opencv?

I am working on a real time video processing project(c/c++) which needs some amount of side and frontal face detection. Frontal face detection was wasy with opencv. Is there anyway I can do it for the side view??

Upvotes: 0

Views: 10928

Answers (1)

G453
G453

Reputation: 1456

First go to Opencv-Face Detection , see the already existing code and follow the instructions to run the code.... Now you can detect frontal face, for face profile go to Trained Classifiers and get the trained casecade classifier and use it inplace of frontal face classifier in your code...There you go.. you can detect the side face...

Onr more thing, see the similar question... See similar question here....

Hope this solves your problem.

Upvotes: 2

Related Questions