|
You can choose this command after selecting two objects with cepstral coefficients (two MFCC's or LFCC's). With this command you perform dynamic time warping.
First we calculate the distance matrix D of all the distances between the cepstral frames of the two objects. This matrix has n1 rows, the number of frames in the first object, and n2 columns, the number of frames in the second object.
The elements of D are the distances dij between frame i (from the first object) and frame j (from the second one). The dij are composed of three parts:
dij = w1 · d1 + w2 · d2 + w3 · d3, |
where w1, w2 and w3 are user-supplied weights and
After calculation of all the frame distances dij, we find the optimal path through the distance matrix D with a Viterbi-algorithm.
© djmw 20221114