フィルターのクリア

how do i extract the frame and shw it out with imshow (HELP)

1 回表示 (過去 30 日間)
Exton
Exton 2012 年 10 月 20 日
""
obj=VideoReader('111.wmv');
a=read(obj);
frames=get(obj,'numberOfFrames');
for k = 1 : frames
I(k).cdata = a(:,:,:,k);
I(k).colormap = [];
end
implay(I)
""
111.wmv is my video(in this video got 148 frames) and what i need is extract all the frame to compare example"Frame1-frame2"(but how do i extract the frame 1 and frame 2... then the other)

採用された回答

divya agarwal
divya agarwal 2012 年 10 月 20 日
a=read(obj,1); this will give you the first frame,when instead of '1' you will write '2' you will get the second frame and so on.
  1 件のコメント
Exton
Exton 2012 年 10 月 20 日
編集済み: Exton 2012 年 10 月 20 日
how do i get the last frame so that i can use a for loop to find the different

サインインしてコメントする。

その他の回答 (0 件)

製品

Community Treasure Hunt

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

Start Hunting!

Translated by