四边形检测与姿势估计
我如何使用 OpenCV 估计四边形的位姿。 我只需要检测框架上的矩形......而不是屏幕上的所有四边形
How can i estimate the pose of a quadrilateral using OpenCV.
I only need to detect a Rectangle on the frame..not all the quadrilaterals on the screen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,通过源点(现实世界点)和目标点(图像点)之间的对应关系,您可以计算单应性。您需要做的就是在图像中找到矩形纸板的角点,并使用现实世界的点,您可以找到单应性。
opencv中已经有这个函数了。请参阅此处了解更多详细信息。
Yes with correspondences between the source points (real world points) and destination points (image points), you can calculate homography. All you need to do is find the corners of a rectangular cardboard in the image and using the real world points, you can find homography.
There is already a function for it in opencv. Look here for more details.