Skip to content

Instantly share code, notes, and snippets.

@ilketunali
Created November 9, 2010 09:14
Show Gist options
  • Save ilketunali/668883 to your computer and use it in GitHub Desktop.
Save ilketunali/668883 to your computer and use it in GitHub Desktop.
mov=aviread('output.avi'); % Futbol videosunu mov isimli matrise yükler.
a=size(mov); % a(2)'ye videonun kaç frameden oluştuğu bilgisi atanır.
for i=1:a(2)
video(:,:,:,i)=frame2im(mov(i)); %video matrisine frameler atanır.
end
imshow(video(:,:,:,i)) % i. frame'i ekranda gösterir.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment