基于颜色直方图的图像搜索

发布于 2024-12-20 21:48:26 字数 77 浏览 1 评论 0原文

我需要根据java中的颜色直方图比较图像。我有使用 java JAI 制作的图像直方图。

但我不知道如何使用直方图比较它们。

I need to compare images on the basis of color histogram in java. I have Histogram of images which I did using JAI of java.

But I don't know how can i compare them using histogram.

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

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

发布评论

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

评论(1

爱情眠于流年 2024-12-27 21:48:26

有不同的方法来测量直方图的相似性。一种这样的方法是巴塔查里亚系数法。

您可以使用以下代码来计算此相似性度量:

float similarity = 0;
float[] targetHistogramData = ...//histogram1.getData();
float[] targetCandidateHistogramData = ...//histogram2.getData();

if( targetHistogramData.length != targetCandidateHistogramData.length){
    throw new IncompatibleHistogramsException();
}

for(int i = 0; i < targetHistogramData.length; i++){
    similarity += Math.sqrt(targetHistogramData[i]*targetCandidateHistogramData[i]);
}

return similarity;

There are different methods for measuring similarity of histgorams. One such method is Bhattacharya coefficient method.

You can use the following code for calculating this similarity measure:

float similarity = 0;
float[] targetHistogramData = ...//histogram1.getData();
float[] targetCandidateHistogramData = ...//histogram2.getData();

if( targetHistogramData.length != targetCandidateHistogramData.length){
    throw new IncompatibleHistogramsException();
}

for(int i = 0; i < targetHistogramData.length; i++){
    similarity += Math.sqrt(targetHistogramData[i]*targetCandidateHistogramData[i]);
}

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