+ All Categories
Home > Documents > CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE...

CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE...

Date post: 25-Sep-2020
Category:
Upload: others
View: 1 times
Download: 0 times
Share this document with a friend
25
1 CH 8 : TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to which one an unknown pattern matches best. That is, each class is represented by a single typical pattern. The crucial point is to adopt an appropriate “measure” to quantify similarity or matching. These measures must accommodate, in an efficient way, deviations between the template and the test pattern. For example the word beauty may have been read a beeauty or beuty, etc., due to errors.
Transcript
Page 1: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

1

CH8: TEMPLATE MATCHING

The Goal: Given a set of reference patterns knownas TEMPLATES, find to which one an unknownpattern matches best. That is, each class isrepresented by a single typical pattern.

The crucial point is to adopt an appropriate“measure” to quantify similarity or matching.

These measures must accommodate, in an efficientway, deviations between the template and the testpattern. For example the word beauty may havebeen read a beeauty or beuty, etc., due to errors.

Page 2: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

2

Typical Applications

Speech Recognition

Motion Estimation in Video Coding

Data Base Image Retrieval

Written Word Recognition

Bioinformatis

Measures based on optimal path searching techniques

Representation: Represent the template by a sequence of measurement vectors

Template:

Test pattern:

)(),...,2( ),1( Irrr

)(),...,2( ),1( Jttt

Page 3: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

3

In general

Form a grid with I points (template) in horizontal (abscissa) and J points (test) in vertical (ordinate)

Each point (i,j) of the grid measures the distancebetween r(i) and t(j)

JI

Page 4: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

4

• Path: A path through the grid, from an initial node(i0, j0) to a final one (if, jf), is an ordered set of nodes(i0, j0), (i1, j1), (i2, j2) … (ik, jk) … (if, jf)

• Each path is associated with a cost

where K is the number of nodes across the path

Search for the path with the optimal cost Dopt.

The matching cost between template and test pattern is Dopt.

1K

0k

kk )j,i(dD

r t

Page 5: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

5

BELLMAN’S OPTIMALITLY PRINCIPLE

Optimum path:

Let (i,j) be an intermediate node, i.e.

Then write the optimal path through (i, j)

),(),( 00 ff

opt jiji

),(...),(...),( 00 ff jijiji

),(),(),(

00 ff

opt

ji

jiji

Page 6: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

6

Bellman’s Principle:

In words: The overall optimal path from (i0,j0) to(if,jf) through (i,j) is the concatenation of theoptimal paths from (i0,j0) to (i,j) and from (i,j) to(if,jf)

Let Dmin (i,j) is the optimal path to reach (i,j) from(i0,j0), then Bellman’s principle is stated as:

the overall minimum cost to reach node (ik,jk) is theminimum cost up to node (ik-1,jk-1) plus the extra cost ofthe transition from (ik-1,jk-1) to (ik,jk).

0 0 0 0( , ) ( , ) ( , ) ( , ) ( , ) ( , )opt opt opt

f f f fi j i j i j i j i j i j

⊕ denotes concatenation of paths

Page 7: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

7

1 1

min min 1 1 1 1,

( , ) min{ ( , ) ( , | , )}k k

k k k k k k k ki j

D i j D i j d i j i j

Page 8: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

8

The Edit distance (Levenstein distance)

It is used for matching written words. Applications:

• Automatic Editing

• Text Retrieval

The measure to be adopted for matching, must take into account:

• Wrongly identified symbolse.g. “befuty” instead of “beauty”

• Insertion errors, e.g. “bearuty”

• Deletion errors, e.g. “beuty”

Page 9: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

9

The cost is based on the philosophy behind the so-called variational similarity, i.e.,

Measure the cost associated with converting one pattern to the other

Edit distance: Minimal total number of changes, C, insertions I and deletions R, required to change pattern A into pattern B,

where j runs over All possible variations of symbols, in order to convert A B

)]()()([min),( jRjIjCBADj

Page 10: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

10

Allowable predecessors and costs

Diagonal transitions

Horizontal Diagonal transitions

Vertical Diagonal transitions

),()1,1( jiji

0, if ( ) ( )( , | 1, 1)

1, ( ) ( )

t i r jd i j i j

t i r j

1),1,( jijid

1)1,,( jijid

Page 11: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

11

Examples:

Page 12: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

12

Examples:

Page 13: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

13

The Algorithm

D(0,0)=0

For i=1, to I

• D(i,0)=D(i-1,0)+1

END {FOR}

For j=1 to J

• D(0,j)=D(0,j-1)+1

END{FOR}

For i=1 to I

• For j=1, to J

– C1=D(i-1,j-1)+d(i,j ׀ i-1,j-1)

– C2=D(i-1,j)+1

– C3=D(i,j-1)+1

– D(i,j)=min (C1,C2,C3)

• END {FOR}

END {FOR}

D(A,B)=D(I,J)

Page 14: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

14

Dynamic Time Warping in Speech Recognition

The isolated word recognition (IWR) will be discussed.

The goal: Given a segment of speech correspondingto an unknown spoken word (test pattern), identifythe word by comparing it against a number of knownspoken words in a data base (reference patterns).

The procedure:

• Express the test and each of the reference patterns assequences of feature vectors , , .

• To this end, divide each of the speech segments in anumber of successive frames.

)(ir )( jt

Page 15: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

15

• For each frame compute a feature vector. For example,the DFT coefficients and use, say, ℓ of those:

• Choοse a cost function associated with each nodeacross a path, e.g., the Euclidean distance

• For each reference pattern compute the optimal pathand the associated cost, against the test pattern.

• Match the test pattern to the reference patternassociated with the minimum cost.

, ..., Ii

x

x

x

ir

i

i

i

1 ,

)1(

...

...

)1(

)0(

)(

, ..., Jj

x

x

x

jt

j

j

j

1 ,

)1(

...

...

)1(

)0(

)(

),()()( kkkk jidjtir

Page 16: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

16Plots of (a) the time sequence corresponding to the word “love” and (b) the

magnitude of the DFT, in dB, for one of its frames.

Page 17: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

17

Plots of the time sequences resulting from the words (a) “love” and (b) “kiss,” spoken by the same speaker

Page 18: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

18

Prior to performing the math one has to choose:

• The global constraints: Defining the region of spacewithin which the search for the optimal path will beperformed.

Itakura global constraints.

The maximum

compression/expansion

factor is 2, and it

determines the slope of the

boundary line segments.

The blue lines correspond

to the same global

constraints when the

relaxed end-point

constraints are adopted.

Page 19: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

• The local constraints: Defining the type of transitionsallowed between the nodes of the grid.

(a) there is no limit in the rate of expansion/compression (b) horizontal (vertical) transitions are allowed only after a diagonal transition (c) at most two successive horizontal (vertical) transitions are allowed only after a diagonal one.

Page 20: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

20

حذفدسالیاپایانتا

Measures based on Correlations: The major task here isto find whether a specific known reference patternresides within a given block of data. Such problems arisein problems such as target detection, robot vision, videocoding. There are two basic steps in such a procedure:

Step 1: Move the reference pattern to all possiblepositions within the block of data. For each position,compute the “similarity” between the referencepattern and the respective part of the block of data.

Step 2: Compute the best matching value.

Page 21: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

21

Application to images: Given a reference image, r(i,j)of MxN size, and an IxJ image array t(i,j). Move r(i,j)to all possible positions (m,n) within t(i,j). Compute:

for every (m,n).

• For all (m,n) compute the minimum.

• The above is equivalent, for most practical cases, tocompute the position (m,n) for which the correlation ismaximum.

– Equivalently, the normalized correlation can becomputed as

i j

njmirjitnmD2

),(),(),(

i j

njmirjitnmc ),(),(),(

i ji j

N

jirjit

nmcnmc

22),(),(

),(),(

Page 22: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

22

– cN(m,n) is less than one and becomes equal to one

only if

),(),( njmirjit

Page 23: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

23

Deformable Template Matching

In correlation matching, the reference pattern wasassumed to reside within the test block of data.However, in most practical cases a version of thereference pattern lives within the test data, which is“similar” to the reference pattern, but not exactly thesame. Such cases are encountered in applications suchas content based retrieval from data bases.

The philosophy: Given a reference pattern r(i,j)

known as prototype:

• Deform the prototype to produce different variants.Deformation is described by the application of aparametric transform on r(i,j):

),( jirT

Page 24: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

24

• For different values of the parameter vector thegoodness of fit with the test pattern is given by thematching energy:

• However, the higher the deformation, the higher thedeviation from the prototype. This is quantified by acost known as deformation energy:

• In deformable template matching compute , so that

• Ideally, one should like to have both terms low: smalldeformation and small matching energy. This meansthat one can retrieve a pattern very similar to theprototype.

mE

dE

)()(min:

dm EE

Page 25: CH8: TEMPLATE MATCHING - دانشگاه صنعتی اصفهان · 2018. 10. 3. · CH8: TEMPLATE MATCHING The Goal: Given a set of reference patterns known as TEMPLATES, find to

25

• .

• Different choices of:

– Transformation function

– Matching Energy Cost

– Deformation Energy cost

are obviously possible.


Recommended