How do I obtain the aligned sequence using distance warping

조회 수: 1 (최근 30일)
Tino
Tino 2021년 7월 5일
답변: Mathieu NOE 2021년 7월 6일
I have a sequence A and B
And I want to warp them using distance warping
x = dtw(A, B)
Please how do I get the vector of warped sequence instead of distance (x)
Thanks for your help in advance.

채택된 답변

Mathieu NOE
Mathieu NOE 2021년 7월 6일
hello
my suggestion below :
% Example 3:
% Align handwriting samples along the x-axis.
load blockletterex
%dtw(MATLAB1,MATLAB2); % native TMW example
% my example
[m1,n1] = size(MATLAB1);
[m2,n2] = size(MATLAB2);
[DIST,IX,IY] = dtw(MATLAB1,MATLAB2);
MATLAB2b = interp2(MATLAB2,IY(1:n1),1:m2); % streched version of MATLAB2 that matches size of MATLAB1
figure,
subplot(211),imagesc(MATLAB1),subplot(212),imagesc(MATLAB2b)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by