Answer to Question #15286 in MatLAB | Mathematica | MathCAD | Maple for kimia
How can I divide my video by some pictures in matlab?
for example 100fps or more ?
1
2012-11-08T09:12:46-0500
mov = VideoReader('xylophone.mpg'); %# use mmreader on older versions
for i=1:mov.NumberOfFrames
img = read(mov,i);
imshow(img)
drawnow
end
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment