I have a problem, when i take a photo with my tablet, i use opencv for detecting a face and recognition a face. So i would try to rotate the face in order to have for example the eyes and mounth in the same position for example all with the same horizontal angle.
Can you suggest me some OpenCv functions or some useful links for do this?
Thanks in advance.
Marco

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

I think the opencv remapping tutorial might help http://opencv.itseez.com/doc/tutorials/imgproc/imgtrans/remap/remap.html#remap


Full answer:

Use this to locate the eyes cascade_classifier now when you have a point for each eye - build the line equation and use simple trigonometry to find the angle. when you have the angle - use the remap to rotate or even better use this warp_affine

link|improve this answer
Hi Jan, what i want is to detect eyes in a image, find the angle respect an horizontal line and rotate the image for having all the face in the same pose. – Marco Gallella Feb 17 at 14:43
1  
use this to locate the eyes opencv.itseez.com/doc/tutorials/objdetect/cascade_classifier/… now when you have a point for each eye - build the line equation and use simple trigonometry to find the angle. when you have the angle - use the remap to rotate or even better use this opencv.itseez.com/doc/tutorials/imgproc/imgtrans/warp_affine/… – Boaz.Jan Feb 17 at 15:03
thanks a tot!!! i try it... – Marco Gallella Feb 17 at 15:10
No problem, If it helped, please consider rating the answer and/or accepting it by clicking on the V sign under the answer rank and making it green. – Boaz.Jan Feb 17 at 15:14
yes, if my question is clear rating me please... – Marco Gallella Feb 17 at 16:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.