You are on page 1of 38

Visual matching: distance measures

Metric and non-metric distances: what distance to use

• It is generally assumed that visual data may be thought of as vectors (e.g. histograms)
that can be compared for similarity using the Euclidean distance or more generally
metric distances:
– Given a S set of patterns a distance d: S ×S →R is metric if satisfying:
− Self-identity: ∀x ∈ S, d(x,x) = 0
− Positivity: ∀ x≠y ∈ S, d(x,y) > 0
− Symmetry: ∀ x,y ∈ S, d(x,y) = d(y,x)
− Triangle inequality: ∀ x,y,z ∈ S, d(x,z) ≤ d(x,y) + d(y,z)

• However, this may not be a valid assumption. A number of approaches in computer vision
compare images using measures of similarity that are not Euclidean nor even metric, in that
they do not obey the triangle inequality or simmetry.
• Most notable cases where non-metric distances are suited are:

– Recognition systems that attempt to faithfully reflect human judgments of similarity.


• Much research in psychology suggests that human similarity judgments are not metric
and distances are not symmetric.
• Matching of subsets of the images while ignoring the most dissimilar parts. In this
case non-metric distances are less affected by extreme differences than the Euclidean
distance, and more robust to outliers.

– Distance functions that are robust to outliers or to extremely noisy data will typically
violate the triangle inequality.

− Comparison between data that are output of a complex algorithm, like image
comparisons using deformable template matching scheme, has no obvious way of
ensuring that the triangle inequality holds.
Human judgements of similarity: color histograms

•Feature vectors are often in the form of histograms that collect the distribution of salient
features. Several distances can be defined between histograms. Choice is dependent on the goals
of matching and type of histogram .

•When histograms include grey levels or colors and human perceptual similarity must be
accounted, non-metric distances are preferred.

Color histogram

Euclidean distance is appropriate Euclidean distance is not appropriate


Human judgements of similarity: perceptual symmetry

• Symmetry does not always hold for human perception:

d(A,B) < d(B,A)

A B
Human judgements of similarity: subset matching

• Partial similarity is a non-metric relation:


d(A,B) + d(B,C) < d(A,C)
Slide from. M. Bronstein

A C

Am I human? Am I equine?
Yes, I’m partially human. I am a centaur. Yes, I’m partially equine.
Similarity from complex algorithms

• Shape deformation similarity is non-metric: similarity can be assessed by minimizing the


energy of deformation E spent while maximizing matching M between edges
Metric distances

• Feature maching where image data are represented by vector data are well suited to work
with metric distances. Many metric distance measures are possible. Among them:

– Heuristic
• Minkowski-form
– Geometric
• Cosine distance

Working with distributions (histograms)


• L1
• L2 (Euclidean)
• Hamming
• Weighted-Mean-Variance (WMV)
Minkowski distance

• Lp metrics also called Minkowski distance defined for two feature vectors A = (x1,…,xn) and
B = (y1,…,yn) :
1
n

( )
p p
d ( A, B) = å ( x - y )
p i i
i =1

• L1: City Block or Manhattan d1 = ||A-B|| = å |x - y |


i i
i =1
  n 2

• L2: Euclidean distance (green line) d = å (x - y )


2 i i
i =1

 
 
• L ∞: max, Chess board distance d∞ = maxi |xi – yi|

• The L1 norm and the L2 norm are mostly used because of


their low computational cost.
L1 and L2 distance

• L1 and L2 distances are widely used in comparison of histogram representations. With color
histograms comparison with Manhattan or Euclidean distance must take care of:
− the L1 and Euclidean distances result in many false negatives because neighboring bins are not
considered
− the L2 distance is only suited for Lab and Luv color spaces.

L1 and L2 distance d(H1,H2)


Hamming distance

− Hamming distance hypothesizes that histograms are binary vectors. With color histograms can
detect absence/presence of colors:
n n

å | H (I
d h (I q ,I d ) = å (H (I
j q ),H j (I d ) | = j q ) XOR H j(I d ))
j=1 j=1

Hamming distance d(H1,H2) 1 0 0 0 0 1 0 0 1 0


Cosine Distance

• Cosine distance derives from the definition of dot product between two vectors.
Geometrically, dot product means that a and b are drawn with a common start point and then
the length of a is multiplied with the length of that component of b that points in the same
direction as a. Cosine distance measures how much a is not aligned with b
m

A·B
å xi yi
d ( A, B) =1- cos( A, B) = 1- = i=1
| A|| B | m m
P ( å x å yi2 )
2
i
i=1 i=1

Properties: x3
– Metric F1 = 2x1+ 3x2 + 5x3
– Only angle is relevant, not vector lengths 5

Q = 0x1 + 0x2 + 2x3


Example:
F1 = 2x1 + 3x2 + 5x3 2 3
F2 = 3x1 + 7x2 + x3 F2 = 3x1 + 7x2 + x3 x1
Q = 0x1 + 0x2 + 2x3
Q is closer to F1 than F2
7
x2
Weighted-Mean-Variance

• Weighted-Mean-Variance (WMV) distance includes some minimal information about


the data distribution:

r m r (I) - mr (J) s r (I) - s r (J)


D (I,J) = +
s ( mr ) s (s r )

• WMV is particularly quick because the calculation is quick and the values can be
precomputed offline.
 
Non-metric distances

• With vector data :

– Heuristic
• Minkowski-form p<1
• Mahalanobis

Working with distributions (histograms)


– Nonparametric test statistics
• Kolmogorov-Smirnov (KS)
• Cramer/Von Mises (CvM)
  2 (Chi Square)
– Ground distance measures
• Histogram intersection
• Quadratic form (QF)
• Earth Movers Distance (EMD)
– Information-theory divergences
• Kullback-Liebler (KL)
• Jeffrey-divergence (JD)
Effects of variance and covariance on Euclidean distance

B
A
The ellipse shows the 50% contour of
a hypothetical population.

• Euclidean distance is not suited to account for differences in variance between the variables
and to account for correlations between variables. Points A and B have similar Euclidean
distances from the mean, but point B is more different from the population than point A.

• This is particularly critical for effects connected to human perception in low-level feature
image matching. In this case the Malahanobis distance should be used.
Mahalanobis (Quadratic) Distance

• Quadratic Form distance accounts for correlation between features :

m m

d ( A, B) =å å | x - y | w | x - y | =| A - B | W | A - B |
2

i i ij j j
T

i =1 j =1

where W is the covariance matrix and diagonal terms are variance in each dimension and off
diagonal terms indicate the dependency between variables.

Properties:
– Metric only if w ij= wji and wii=1
– Non-metric otherwise
• Geometric interpretation of metric distances
• Mahanalobis distance is used for color histogram similarity as it closely resembles human perception:

d h (A,B) = (H(I q ) - H(I d )) T A (H(I q ) - H(I d ))


being the similarity matrix denoting similarity between bins i and j
of N feature
[ ij ]
A vectors
= a x1,…,xN, each of length n.

 
 

• The quadratic form distance in image retrieval results in false positives because it tends to
overestimate the mutual similarity of color distributions without a pronounced mode: the same
mass in a given bin of the first histogram is simultaneously made to correspond to masses contained in
different bins of the other histogram
Histogram intersection

• Histogram intersection helps to check occurrence of object in region H obj[j] < H reg[j] .
Histogram intersection is not symmetric:

å min(H j (I q ),H j(I d ))


j=1
d h (I q ,I d ) =1-
n

å H (I j d)
j=1

• Histogram intersection is widely used because of its ability to handle partial matches when the
areas of the two histograms are different.
Cumulative Difference distances

• Kolmogorov-Smirnov distance (KS)

D r (I,J) =max F r (i;I) - F r (i;J)

• Cramer/von Mises distance (CvM)


 
å (F (i;I)- F (i;J))
D r (I,J) = r r 2

i where Fr(I; .) is the marginal


histogram distribution

 
• Both Kolmogorov-Smirnov and Cramer/von Mises distance are statistical measures that
measure the underlying similarity of two unbinned distributions. Work only for 1D data
or cumulative histograms. They are non-symmetric distance functions.
Cumulative Histogram

• Cumulative Histogram describes the probability that a random variable X with a certain pdf
will be found at a value less than or equal to x.

Normal Histogram Cumulative Histogram


Cumulative Difference Example

Histogram 1 Histogram 2 Difference

- =

K-S = D r (I, J ) =max F r (i; I ) - F r (i; J ) r


å
CvM =D (I,J) = (F r (i;I)- F r (i;J)) 2
i
2 distance
 2 distance measures the underlying similarity of two samples where differences are emphasized:

 2 distance measures how unlikely it is that one distribution was drawn from the population represented by the other.
• The major drawback of these measures is that it accounts only for the correspondence between bins with the same index and do not uses information across bins

( f( i; I) - ˆf( i) ) 2 ,
D(I, J) = å ˆf( i)
ˆf( i) = [ f( i; I) + f( i; J) ] / 2 is the expected frequency

 
Earth Mover’s distance

• Earth Mover’s distance (EMD) between two distributions represents the minimum work to
morph one distribution into the other.

• Given feature vectors with their associated feature weights A = {(x i,wi)} and B = {(yj,uj)} and
a function fij expressing the capability of flowing from xi to yj over a distance dij earth moving
distance is defined as::
min U å i, j
fij d ij
d h (A,B) =
min (W, U)

provided that: fij≥0, j fij ≤ wi , i fij ≤ ui , ij f ij = min(W,U)

• Properties:
– Respects scaling
– Metric if d metric, and W = U
– If W ≠U: No positivity, surplus not taken into account, No triangle inequality
• Informally, if the two distributions represent different ways of amassing the same amount of
material from a region D and the Earth Mover’s distance is given by the amount of mass times
the distance by which it is moved.

Region D

fij amount of mass from xi to yj dij distance from xi to yj

EMD = 0.23*155.7 + 0.51*252.3 + 0.26*316.3 EMDopt = 0.23*155.7 + 0.25*252.3 + 0.26*198.2 + 0.26*277


= 246.7 = 224.4
Earth Mover’s distance with histograms

• Earth Mover’s distance is widely used for color, edge, motion vector histograms. It is the
only measure that works on distributions with a different number of bins.

• However it has high computational cost. Considering two histograms H1and H2 as defined
f.e. in a color space, pixels can be regarded as the unit of mass to be transported from one
distribution to the other. It has to be based on some metric of distance between individual
features.



=
Computing Earth Mover’s Distance

(amount moved)

=
(amount moved) * (distance moved)

=
With variable length representations

• Using Earth Mover’s Distance can be applied to evaluate distance between histograms with
different bins, subjected to a few constrains:

P (distance moved) * (amount moved)

å å f d =work
m n

i =1 j =1 ij ij

m clusters

Q
 

n clusters
Kullback-Leibler distance

• Kullback-Leibler distance considers histograms as distributions and measures their similarity by calculating the relative
entropy.
• It measures the shared information between two variables.: i.e. the cost of encoding one distribution as another. In other
words it measures how well can one distribution be coded using the other as a codebook

 H [I ] =  H [I ] =1
i i q i i d

Hi[Iq], Hi[Id] ≥ 0

n
H i (I q )be used to determine “how far away” a probability distribution P is
å
• The Kullback-Leibler divergence is not symmetric. It can
d h (I
from q ,I ddistribution
another )= QHi.e.
i (I ) log measure between two documents.
asqa distance
• H i (I dmatch
The Kullback Leibler divergence does not necessarily ) perceptual similarity well and is sensitive to histogram binning.
i=1
Distance properties summary

/-
/- /- /-

Lp Minkowski-form
WMV Weighted-Mean-Variance
 2 Chi Square
KS CvM Kolmogorov-Smirnov Cramer/von Mises
KL Kullback-Liebler
JD Jeffrey-divergence
QF Quadratic form
EMD Earth Movers Distance

by Kein Folientitel
Examples using Color CIE Lab
L1 distance
Using Color CIE Lab)
Jeffrey divergence

χ2 statistics

Quadratic form distance

Earth Mover Distance


Image Lookup
Merging Similarities

• In the case in which several features are considered, distances computed between each
feature vector can be merged together to evauate the full similarity. Combination of
distances can be performed according to different policies:

– Linear weighting: combine k different feature distances d i, e.g. color, texture and shape
distances: Linear weighting (weighted average)

– Non-linear weighting: α-trimmed mean: weight only α percent highest of the k values
Distances for symbolic representations

• In some cases features are represented as strings of symbols. This is the case of spatial
relations, temporal features, semantic content….. In these cases edit distances can be used
that compute the number of changes required to transform one string into the other:

• Edit distance operations that are considered are:


– Insertion, where an extra character is inserted into the string
– Deletion, where a character has been removed from the string
– Transposition, in which two characters are reversed in their sequence
– Substitution, which is an insertion followed by a deletion
Hamming and Levenshtein distances

• The Hamming distance (seen for histograms) is suited to compute edit distances between
binary vectors .

• the Needleman-Wunch distance (specialization of Levenshtein edit distance) between


components of the feature vectors:
A 1111111222111111111
B 1111111444111111111
N-W Distance: 6 = (4-2) + (4-2) + (4-2)

You might also like