I have an .avi file, I want to convert it to matrix format.
    2 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
.Avi is in struct format, I want to convert it to matrix format so that I use those matrix data in my other code for processing. Help please!
Thanks
0 Commenti
Risposte (1)
  darova
      
      
 il 6 Apr 2020
        Use VideoReader
v = VideoReader('xylophone.mp4');
numFrames = v.NumberOfFrames;
for i = 1:numFrames
    I = read(v,i);
    imshow(I)
    pause(0.5)
end
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!