필터 지우기
필터 지우기

how to mix two vedio files according to the height of frame ?

조회 수: 1 (최근 30일)
suresh gunarathna
suresh gunarathna 2018년 10월 24일
답변: suresh gunarathna 2018년 10월 24일
function mov = halfmix(fname1,fname2)
video1=playvideo(fname1);
video2=playvideo(fname2);
[h1,w1,c1] = size(video1(1).cdata);
[h2,w2,c2] = size(video2(1).cdata);
if(h1~=h2 && w1~=w2)
disp('dimension are not equal to')
return;
end
framenumbers1 = size(video1,2);
framenumbers2 = size(video2,2);
if(framenumbers1>framenumbers2)
mov = video2;
for i=1:framenumbers2
mov(i).cdata(1:h2,:,:) = video2(i).cdata(1:h2,:,:);
end
else
mov = video1;
for i = 1:framenumbers2
mov(i).cdata(1:h2,:,:) = video1(i).cdata(1:h2,:,:);
end
end
end
this is what i do to hear but finally check the function is correct it response error in my code that point "vediofile" is undefined variable or function plz help if anyone can?

채택된 답변

suresh gunarathna
suresh gunarathna 2018년 10월 24일
halfmix('apalne.mp4','cloude.mp4');

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by