how to compare histograms
8 次查看(过去 30 天)
显示 更早的评论
i want to compare two histograms of lbp images.
i tried using pdist2 but it is showing erroneous results.
please help
2 个评论
Image Analyst
2015-4-18
So you have two vectors of 256 elements each, which are most likely going to be different for each index. So, what does "compare" mean to you? And do you know that two images can have the same histogram and look totally different?
回答(1 个)
Youssef Khmou
2015-4-19
Many approaches exist for this purpose, the easiest way is the root mean square error metric, the minimum value means best match from all samples, f1 and f2 are two normalized histograms that we want to compare :
rmse= sqrt(mean((f1-f2).^2));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!