Opencv中的相关函数
帮助我学习Opencv中的相关函数。
我读过一些参考资料,但我无法得到正确的想法。 使用相关性,我可以匹配两个图像并通过考虑原始图像和另一个图像之间的关系来为其分配权重。 ? (因为我想匹配 2 个相似但不是 100% 相同的图像) 是一种模板匹配...?
我想知道是否有人可以向我指出 net.c++ 中某处的 c++ 示例代码。
谢谢
Help me to learn correlation function in Opencv.
I have read some references but I unable to get a correct idea.
Using Correlation can I match two images and assign weights on them by considering relation between original and another. ?
(becouse I want to match 2 images like same but not 100% same)
Is a kind of Template matching ...?
I wonder if someone can point me a sample code in c++ somewhere in net.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用图像相关性来查找图像内的子图像。
这就是它的工作原理,在文本框中查找零:
另外,请查看 这个答案
You can use Image Correlation to find subimages inside an image.
This is how it works, looking for zeroes inside a textbox:
Also, take a look at this answer