use subplot play video
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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');
0 commentaires
Réponse acceptée
Chandra Kurniawan
le 19 Fév 2012
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 commentaires
Chandra Kurniawan
le 20 Fév 2012
This code is used for 1 video only..
Please try implay for several videos.
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!