Як оцінити схожість двох гістограм?


33

З огляду на дві гістограми, як ми можемо оцінити, схожі вони чи ні?

Чи достатньо просто переглянути дві гістограми? Просте зіставлення з одним на одне має проблему, що якщо гістограма трохи відрізняється і трохи зміщується, ми не отримаємо бажаного результату.

Будь-які пропозиції?


2
Що означає "подібне"? Тест хі-квадрата та тест KS, наприклад, перевіряють, чи дві гістограми близькі до однакових. Але "подібні" можуть означати "мають однакову форму", ігноруючи будь-які відмінності місця та / або масштабу. Чи можете ви пояснити свій намір?
whuber

Відповіді:


8

Нещодавній документ, який, можливо, варто прочитати:

Цао, Ю. Петцольд, Л. Обмеження точності та вимірювання помилок в стохастичному моделюванні хімічно реагуючих систем, 2006.

Хоча в цьому документі основна увага приділяється порівнянню алгоритмів стохастичного моделювання, основна ідея полягає у тому, як порівняти дві гістограми.

Ви можете отримати доступ до pdf з веб-сторінки автора.


Привіт, його приємний папір, ніж дякую за надання PDF-посилання .. Я обов'язково пройду цей документ ..
Mew 3.4.

12
Замість надання довідок було б добре, якби ви узагальнили основні моменти статті. Посилання вмирають, тож у майбутньому ваша відповідь може стати непотрібною для не передплатників цього журналу (а переважна більшість людського населення - це не підписники).
Тім

27

Існує велика кількість дистанційних заходів між двома гістограмами. Ви можете прочитати хорошу категоризацію цих заходів у:

К. Мешгі та С. Ішій, “Розширення гістограми кольорів за допомогою сітки для підвищення точності відстеження”, у зб. MVA'15, Токіо, Японія, травень 2015 року.

Тут представлені найпопулярніші функції дистанції для вашої зручності:

  • L0 або відстань Геллінгера

DL0=ih1(i)h2(i)

  • L1, Manhattan, or City Block Distance

DL1=i|h1(i)h2(i)|

  • L=2 or Euclidean Distance

DL2=i(h1(i)h2(i))2

DL=maxi|h1(i)h2(i)|

  • Lp or Fractional Distance (part of Minkowski distance family)

DLp=(i|h1(i)h2(i)|p)1/p and 0<p<1

  • Histogram Intersection

D=1i(min(h1(i),h2(i))min(|h1(i)|,|h2(i)|)

  • Cosine Distance

DCO=1ih1(i)h2(i)

  • Canberra Distance

DCB=i|h1(i)h2(i)|min(|h1(i)|,|h2(i)|)

  • Pearson's Correlation Coefficient

DCR=i(h1(i)1n)(h2(i)1n)i(h1(i)1n)2i(h2(i)1n)2

  • Kolmogorov-Smirnov Divergance

DKS=maxi|h1(i)h2(i)|

  • Match Distance

DMA=i|h1(i)h2(i)|

  • Cramer-von Mises Distance

DCM=i(h1(i)h2(i))2

  • χ2 Statistics

Dχ2=i(h1(i)h2(i))2h1(i)+h2(i)

  • Bhattacharyya Distance

DBH=1ih1(i)h2(i) & hellinger

  • Squared Chord

DSC=i(h1(i)h2(i))2

  • Kullback-Liebler Divergance

DKL=ih1(i)logh1(i)m(i)

  • Jefferey Divergence

DJD=i(h1(i)logh1(i)m(i)+h2(i)logh2(i)m(i))

  • Earth Mover's Distance (this is the first member of Transportation distances that embed binning information A into the distance, for more information please refer to the abovementioned paper or Wikipedia entry.

DEM=minfiji,jfijAijsumi,jfij jfijh1(i),jfijh2(j),i,jfij=min(ih1(i)jh2(j)) and fij represents the flow from i to j

  • Quadratic Distance

DQU=i,jAij(h1(i)h2(j))2

  • Quadratic-Chi Distance

DQC=i,jAij(h1(i)h2(i)(cAci(h1(c)+h2(c)))m)(h1(j)h2(j)(cAcj(h1(c)+h2(c)))m) and 000

A Matlab implementation of some of these distances is available from my GitHub repository: https://github.com/meshgi/Histogram_of_Color_Advancements/tree/master/distance Also you can search guys like Yossi Rubner, Ofir Pele, Marco Cuturi and Haibin Ling for more state-of-the-art distances.

Update: Alternative explaination for the distances appears here and there in the literature, so I list them here for sake of completeness.

  • Canberra distance (another version)

DCB=i|h1(i)h2(i)||h1(i)|+|h2(i)|

  • Bray-Curtis Dissimilarity, Sorensen Distance (since the sum of histograms are equal to one, it equals to DL0)

DBC=12ih1(i)=h2(i)ih1(i)+ih2(i)

  • Jaccard Distance (i.e. intersection over union, another version)

DIOU=1imin(h1(i),h2(i))imax(h1(i),h2(i))


Welcome to our site! Thank you for this contribution.
whuber


Thanks, a list is wonderful, while it doesn't allow to create a comparison operator for histogram, e.g. to say that hist1 < hist2
Olha Pavliuk

22

The standard answer to this question is the chi-squared test. The KS test is for unbinned data, not binned data. (If you have the unbinned data, then by all means use a KS-style test, but if you only have the histogram, the KS test is not appropriate.)


You are correct that the KS test is not appropriate for histograms when it is understood as a hypothesis test about the distribution of the underlying data, but I see no reason why the KS statistic wouldn't work well as a measure of sameness of any two histograms.
whuber

An explanation of why the Kolmogorov-Smirnov test is not appropriate with binned data would be useful.
naught101

This may not be as useful in image processing as in statistical fit assessment. Often in image processing, a histogram of data is used as a descriptor for a region of an image, and the goal is for a distance between histograms to reflect the distance between image patches. Little, or possibly nothing at all, may be known about the general population statistics of the underlying image data used to get the histogram. For example, the underlying population statistics when using histograms of oriented gradients would differ considerably based on the actual content of the images.
ely

1
naught101's question was answered by Stochtastic: stats.stackexchange.com/a/108523/37373
Lapis

10

You're looking for the Kolmogorov-Smirnov test. Don't forget to divide the bar heights by the sum of all observations of each histogram.

Note that the KS-test is also reporting a difference if e.g. the means of the distributions are shifted relative to one another. If translation of the histogram along the x-axis is not meaningful in your application, you may want to subtract the mean from each histogram first.


1
Subtracting the mean changes the null distribution of the KS statistic. @David Wright raises a valid objection to the application of the KS test to histograms anyway.
whuber

7

As David's answer points out, the chi-squared test is necessary for binned data as the KS test assumes continuous distributions. Regarding why the KS test is inappropriate (naught101's comment), there has been some discussion of the issue in the applied statistics literature that is worth raising here.

An amusing exchange began with the claim (García-Berthou and Alcaraz, 2004) that one third of Nature papers contain statistical errors. However, a subsequent paper (Jeng, 2006, "Error in statistical tests of error in statistical tests" -- perhaps my all-time favorite paper title) showed that Garcia-Berthou and Alcaraz (2005) used KS tests on discrete data, leading to their reporting inaccurate p-values in their meta-study. The Jeng (2006) paper provides a nice discussion of the issue, even showing that one can modify the KS test to work for discrete data. In this specific case, the distinction boils down to the difference between a uniform distribution of the trailing digit on [0,9],

P(x)=19, (0x9)
(in the incorrect KS test) and a comb distribution of delta functions,
P(x)=110j=09δ(xj)
(in the correct, modified form). As a result of the original error, Garcia-Berthou and Alcaraz (2004) incorrectly rejected the null, while the chi-squared and modified KS test do not. In any case, the chi-squared test is the standard choice in this scenario, even if KS can be modified to work here.

-1

You can compute the cross-correlation (convolution) between both histograms. That will take into account slight traslations.


1
This is being automatically flagged as low quality, probably because it is so short. At present it is more of a comment than an answer by our standards. Can you expand on it? We can also turn it into a comment.
gung - Reinstate Monica

Since histograms are fairly unstable representations of data, and also because they do not represent probabilities using height alone (they use area), one might reasonably question the applicability, generality, or usefulness of this approach unless more specific guidance is provided.
whuber
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.