フィルターのクリア

error in loading video file Climate.mp4

2 ビュー (過去 30 日間)
Osita Onyejekwe
Osita Onyejekwe 2017 年 4 月 7 日
コメント済み: Walter Roberson 2017 年 4 月 7 日
I'm trying to load a video file in directory to capture frames and i keep getting the error this error. Below is the code and the error that I am getting
obj = VideoReader(Climate.mp4);
for k = 1 : 5 %fill in the appropriate number
this_frame = READFRAME(obj, k);
thisfig = figure();
thisax = axes('Parent', thisfig);
image(this_frame, 'Parent', thisax);
title(thisax, sprintf('Frame #%d', k));
end
Undefined variable "Climate" or function "Climate.mp4".
Error in Climate_Change (line 48)
obj = VideoReader(Climate.mp4);
How do I fix this?
Thank you

回答 (1 件)

Paramesh
Paramesh 2017 年 4 月 7 日
see this this syntax
v = VideoReader('xylophone.mp4');
  2 件のコメント
Osita Onyejekwe
Osita Onyejekwe 2017 年 4 月 7 日
now i get this error,
Undefined function 'READFRAME' for input arguments of type 'VideoReader'.
Walter Roberson
Walter Roberson 2017 年 4 月 7 日
You might happen to be using an old version between the time that VideoReader was introduced but before the readFrame() method was introduced (note capitalization, by the way.) If so then you will need to recode in terms of the older read() method; https://www.mathworks.com/help/matlab/ref/videoreader.read.html

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

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by