你知道图像哈希库吗?
我正在寻找一个“模糊”图像哈希库,这意味着,即使有一些微小的变化(不同的压缩比,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能不需要散列,但是有一些方法可以在没有库的情况下完成您想要的事情。例如,以下是一种方法:
要比较照片,请使用单个值。如果您需要更多确定性,可以在匹配单个值后比较 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:
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.