Azzera filtri
Azzera filtri

Error: Index exceeds matrix dimensions.

1 visualizzazione (ultimi 30 giorni)
pratibha rane
pratibha rane il 24 Feb 2013
obj=mmreader('ATMvid.avi');
a=read(obj, [10 200]);
%a=read(obj);
frames=get(obj,'numberOfFrames');% to find no.of frames
frames
for k = 1 : frames-1
source(k).cdata = a(:,:,:,k);
source(k).colormap = [];
end
In above code I am getting error "Index exceeds matrix dimensions.", please help

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 24 Feb 2013
Modificato: Azzi Abdelmalek il 24 Feb 2013
What you should do is
for k = 1 : size(a,4)
source(k).cdata = a(:,:,:,k);
source(k).colormap = [];
end
  8 Commenti
pratibha rane
pratibha rane il 25 Feb 2013
this problem solved after installation of window 7 codec net pack.

Accedi per commentare.

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by