你知道图像哈希库吗?

发布于 2024-09-28 10:46:47 字数 132 浏览 3 评论 0原文

我正在寻找一个“模糊”图像哈希库,这意味着,即使有一些微小的变化(不同的压缩比,watermaks,小裁剪等......),一个库也可以识别图像

,我找到了 pHash 库,但是有没有有关使用它的文档。

你认识一个吗?

I am looking for a "fuzzy" hash library for images, that means, one library which can recognize an image even with some minor changes (different compression ratio, watermaks, small cropping etc...)

I found pHash library, but there is no documentation about using it.

Do you know one ?

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

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

发布评论

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

评论(1

ゃ懵逼小萝莉 2024-10-05 10:46:47

您可能不需要散列,但是有一些方法可以在没有库的情况下完成您想要的事情。例如,以下是一种方法:

  1. 将图像大小调整为较小的值,例如 8x6 或 16x12。
  2. 获取每个像素的红色、绿色和蓝色值。
  3. 将它们组合成一个值。

要比较照片,请使用单个值。如果您需要更多确定性,可以在匹配单个值后比较 8x6 或 16x12 图像的像素值。

You probably don't want hashing, but there are ways you can accomplish what you want without a library. For example, here's one way:

  1. Resize the image to something small, such as 8x6 or 16x12.
  2. Get the Red, Green, and Blue values for each pixel.
  3. Combine these into a single value.

To compare photos, use the single values. If you need more certainty, you can compare the pixel values of the 8x6 or 16x12 images after you match the single value.

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