use subplot play video

5 次查看(过去 30 天)
Pan
Pan 2012-2-19
编辑: dpb 2013-10-16
Hi,I need to help.
This code could show image in same figure, but I want to play video not image,I don't know how to do.
subplot(1,2,1), imshow('autumn.tif');
subplot(1,2,2), imshow('glass.png');

采纳的回答

Chandra Kurniawan
Chandra Kurniawan 2012-2-19
Hi, maybe
obj = mmreader('xylophone.mpg');
vid = read(obj);
for frame = 1 : size(vid,4)
bw = im2bw(vid(:,:,:,frame));
subplot(2,1,1); imshow(vid(:,:,:,frame));
subplot(2,1,2); imshow(bw);
drawnow;
end
  2 个评论
Pan
Pan 2012-2-19
Hi, may I ask you the quwstion.
I want to play the video, for example "can.avi" and "watch.avi" and "book.avi" and " phone.avi". I try it but the code doesn't play.
Chandra Kurniawan
Chandra Kurniawan 2012-2-20
This code is used for 1 video only..
Please try implay for several videos.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by