is it possible to make frames to video

1 回表示 (過去 30 日間)
Elysi Cochin
Elysi Cochin 2013 年 2 月 26 日
i have a video.... and when i convert it to frames i get 1000 frames.... now is it possible to select frames from 500 to 700 and save it in avi format..... so that i can open the video later without running the code as the video we gave for input...... please do reply...
  2 件のコメント
manoj saini
manoj saini 2013 年 2 月 26 日
yes only read your matrix from b=a(500,700)\ now save your b variable
Image Analyst
Image Analyst 2013 年 2 月 26 日
Is your video live/streaming, or has it already been captured and saved to a file (from which you wish to extract a subset of frames)?

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

採用された回答

manoj saini
manoj saini 2013 年 2 月 26 日
ya.........using getsnapshot
  4 件のコメント
Elysi Cochin
Elysi Cochin 2013 年 2 月 26 日
編集済み: Elysi Cochin 2013 年 2 月 26 日
sir i got a code from the following link
and i edited it as below but i'm getting error
for frame = 60 : 100
outputBaseFileName = sprintf('%d.jpg', frame);
outputFullFileName = fullfile('Frames', outputBaseFileName);
I = imread(outputFullFileName);
data(:,:,:,i) = getsnapshot(I);
imshow(data(:,:,:,i));
drawnow;
end
my error is
??? Undefined function or method 'getsnapshot' for input arguments of type 'uint8'.
Error in ==> VideoMainTrial at 32
data(:,:,:,i) = getsnapshot(I);
please rectify it for me sir....
Walter Roberson
Walter Roberson 2013 年 2 月 26 日
Your "I" is not a video input object.

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by