快速比较图像

发布于 2024-10-20 07:07:57 字数 275 浏览 6 评论 0原文

假设我有一组 10,000 张图像,我想根据相似性对其进行分类。许多人建议比较直方图是衡量相似性的一种廉价方法。例如,此线程建议每次比较使用 6 个直方图。

如果我将每个图像的直方图与集合中的所有其他图像进行比较,则总共需要 O(n^2) = 60,000*59,999/2 次比较,这非常慢。我怎样才能加快速度?

Say I have a set of 10,000 images that I'd like to classify based on similarity. A number of people have recommended that comparing histograms is a cheap way to measure similarity. This thread, for example, recommends using 6 histograms for each comparison.

If I compare each image's histogram with all other images in the set, that's O(n^2) = 60,000*59,999/2 comparisons in all, which is very slow. How can I speed this up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

没有你我更好 2024-10-27 07:07:57

以某种方式散列直方图,制作散列的排序列表,找到相似的相邻值(在一定限制内),然后比较这些直方图

但是,制作直方图可能是缓慢的步骤

Hash the histogram in some way,make a sorted list of the hashes, find adjacent values that are similar (within some limit) then compare those histograms

However making the histograms is likely to be the slow step

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文