应用于图像的余弦相似度测量
我正在尝试开展一个项目,该项目要求我找到两个图像之间的相似性。任何人都可以帮助我使用在图像上应用余弦相似度的 matlab 代码或任何其他有用的信息。谢谢你!
I am trying to work on a project which requires me to find the similarity between two images. Can anyone help me with the matlab code for applying cosine similarity on images or any other useful information on the same. Thank You!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有兴趣进行图像相似度视觉描述符,请查看 MPEG-7 视觉描述符。我从 EHD(边缘直方图描述符)和 CSD(颜色结构描述符)的组合中获得了很好的结果,并且网络上有 Matlab 实现(尽管它们很容易从原始出版物中实现您自己)
一些示例来源:< a href="http://code.google.com/p/matlab-cbir/source/browse/#svn%2Ftrunk" rel="nofollow">Matlab 中基于内容的图像检索
Have a look at the MPEG-7 Visual descriptors if you are interested in doing image similarity Visual descriptors . I have had good results from combinations of the EHD (Edge histogram descriptor) and CSD (colour structure descriptor) and there are Matlab implementations on the web (though they are easy enough to implement your self from the original publications)
Some example source: Content Based Image Retrieval in Matlab