Visual matching distance measures Metric and nonmetric distances

  • Slides: 38
Download presentation
Visual matching: distance measures

Visual matching: distance measures

Metric and non-metric distances: what distance to use • It is generally assumed that

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

• 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

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

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,

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 B A Am I human? Yes, I’m partially human. C I am a centaur. Am I equine? Yes, I’m partially equine.

Similarity from complex algorithms • Shape deformation similarity is non-metric: similarity can be assessed

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

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) • L 1 • L 2 (Euclidean) • Hamming • Weighted-Mean-Variance (WMV)

Minkowski distance • Lp metrics also called Minkowski distance defined for two feature vectors

Minkowski distance • Lp metrics also called Minkowski distance defined for two feature vectors A = (x 1, …, xn) and B = (y 1, …, yn) : • L 1: City Block or Manhattan d 1 = ||A-B|| = • L 2: Euclidean distance (green line) • L ∞: max, Chess board distance d∞ = maxi |xi – yi| • The L 1 norm and the L 2 norm are mostly used because of their low computational cost.

L 1 and L 2 distance • L 1 and L 2 distances are

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

Hamming distance − Hamming distance hypothesizes that histograms are binary vectors. With color histograms

Hamming distance − Hamming distance hypothesizes that histograms are binary vectors. With color histograms can detect absence/presence of colors: Hamming distance d(H 1, H 2) 1 0 0 1 0

Cosine Distance • Cosine distance derives from the definition of dot product between two

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 Properties: – Metric F 1 = 2 x 1+ 3 x 2 + 5 x 3 – Only angle is relevant, not vector lengths Example: F 1 = 2 x 1 + 3 x 2 + 5 x 3 F 2 = 3 x 1 + 7 x 2 + x 3 Q = 0 x 1 + 0 x 2 + 2 x 3 Q is closer to F 1 than F 2 x 3 5 Q = 0 x 1 + 0 x 2 + 2 x 3 23 F 2 = 3 x 1 + 7 x 2 + x 3 7 x 2 x 1

Weighted-Mean-Variance • Weighted-Mean-Variance (WMV) distance includes some minimal information about the data distribution: •

Weighted-Mean-Variance • Weighted-Mean-Variance (WMV) distance includes some minimal information about the data distribution: • 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

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 (Cv. M) • 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

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 : where

Mahalanobis (Quadratic) Distance • Quadratic Form distance accounts for correlation between features : 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

• Geometric interpretation of metric distances

 • Mahanalobis distance is used for color histogram similarity as it closely resembles

• Mahanalobis distance is used for color histogram similarity as it closely resembles human perception: being the similarity matrix denoting similarity between bins i and j of N feature vectors x 1, …, x. N, 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

Histogram intersection • Histogram intersection helps to check occurrence of object in region H obj[j] < H reg[j]. Histogram intersection is not symmetric: • 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) Cramer/von Mises distance (Cv. M) where

Cumulative Difference distances • • Kolmogorov-Smirnov distance (KS) Cramer/von Mises distance (Cv. M) 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 1 D data or cumulative histograms. They are non-symmetric distance functions.

Cumulative Histogram • Cumulative Histogram describes the probability that a random variable X with

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 = = Cv. M

Cumulative Difference Example Histogram 1 Histogram 2 Difference - K-S = = Cv. M =

 2 distance • 2 distance measures the underlying similarity of two samples where

2 distance • 2 distance measures the underlying similarity of two samples where differences are emphasized: is the expected frequency • • 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

Earth Mover’s distance • Earth Mover’s distance (EMD) between two distributions represents the minimum

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: : provided that: fij≥ 0, Sj fij ≤ wi , Si fij ≤ ui , Sij 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

• 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 distance from xi to yj EMD = 0. 23*155. 7 + 0. 51*252. 3 + 0. 26*316. 3 = 246. 7 EMDopt = 0. 23*155. 7 + 0. 25*252. 3 + 0. 26*198. 2 + 0. 26*277 = 224. 4

Earth Mover’s distance with histograms • Earth Mover’s distance is widely used for color,

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 H 1 and H 2 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) =

Computing Earth Mover’s Distance (amount moved) =

(amount moved) * (distance moved) =

(amount moved) * (distance moved) =

With variable length representations • Using Earth Mover’s Distance can be applied to evaluate

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) m clusters Q n clusters

Kullback-Leibler distance • • Kullback-Leibler distance considers histograms as distributions and measures their similarity

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 Si Hi[Iq] = S i Hi[Id] =1 Hi[Iq], Hi[Id] ≥ 0 • • The Kullback-Leibler divergence is not symmetric. It can be used to determine “how far away” a probability distribution P is from another distribution Q i. e. as a distance measure between two documents. The Kullback Leibler divergence does not necessarily match perceptual similarity well and is sensitive to histogram binning.

Distance properties summary //- Lp WMV 2 KS Cv. M KL JD QF EMD

Distance properties summary //- Lp WMV 2 KS Cv. M KL JD QF EMD /- /- Minkowski-form Weighted-Mean-Variance Chi Square Kolmogorov-Smirnov Cramer/von Mises Kullback-Liebler Jeffrey-divergence Quadratic form Earth Movers Distance by Kein Folientitel

Examples using Color CIE Lab L 1 distance Using Color CIE Lab) Jeffrey divergence

Examples using Color CIE Lab L 1 distance Using Color CIE Lab) Jeffrey divergence χ2 statistics Quadratic form distance Earth Mover Distance

Image Lookup

Image Lookup

Merging Similarities • In the case in which several features are considered, distances computed

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

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

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 B 1111111222111111144411111 N-W Distance: 6 = (4 -2) + (4 -2) –