旋转图像中的脸部
我有一个问题,当我用平板电脑拍照时,我使用 opencv 来检测人脸并识别人脸。所以我会尝试旋转脸部,以便使眼睛和嘴巴处于相同的位置,例如全部具有相同的水平角度。
您能给我推荐一些 OpenCv 函数或一些有用的链接吗?
提前致谢。
马可
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 opencv 重新映射教程可能会有所帮助
http://opencv.itseez.com/doc/tutorials/imgproc/imgtrans/ remap/remap.html#remap
完整答案:
用它来定位眼睛cascade_classifier
现在,当您每只眼睛都有一个点时,请建立直线方程并使用简单的三角学来找到角度。当你有角度时 - 使用重新映射来旋转,甚至更好地使用这个 扭曲仿射
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