opencv - 对函数“FindHomography”的混淆和“cvFindHomography”
我对 opencv 有点陌生。似乎有两个函数“FindHomography”和“cvFindHomography”执行完全相同的功能。所以我对它们之间的区别很困惑。
提供了文档链接: 查找单应性,cvFindHomography
感谢您的任何帮助或澄清。
I am a bit new to opencv. It seems that there are two functions "FindHomography" and "cvFindHomography" that perform exactly the same functionality. So I am quite confused over the difference between them.
Links to documentation are provided:
FindHomography, cvFindHomography
Thanks for the any help or clarification.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本例的不同之处在于 FindHomography 属于 OpenCV 的 Python 接口, 和 cvFindHomography属于C接口。
The difference in this case is that FindHomography belongs to the Python interface of OpenCV, and cvFindHomography belongs to the C interface.