0

私はMATLABを使用してaviファイルから特徴を抽出することに取り組んでいます。コードを実行するたびに、「読み取りの例外」というエラーが発生します。コードは次のとおりです。

cd('D:\Classified\negative-videos'); 
neg_files = dir('*.avi');


% compute negative files

for fileIter=1:size(neg_files,1)
   tic;
    movie_name = neg_files(fileIter).name;
    try

    [color_score__,edge_score__,spatio_score__,score__] = lg_model(movie_name,fps,3);

    if(score__ < threshold)
       true_neg = true_neg + 1 ;
    end

    if(score__ >= threshold)
        false_pos = false_pos + 1 ;
    end
    fprintf('[ %d / %d ]\tFile : %s\tscore : %f\tcolor_score : %f\tspatio_score : %f\n', fileIter,size(neg_files,1),movie_name, score__,color_score__, spatio_score__);        

    catch ME1
     fprintf('[ %d / %d ]\tFile : %s\t EXCEPTION IN READING \n', fileIter,size(neg_files,1),movie_name);
    end
    toc;    
    end

     fprintf('INTERMEDIATE\ttrue pos =  %d \n false pos = %d \n true neg =  %d \n false neg = %d \n', true_pos,false_pos,true_neg, false_neg); 

上記のコードスニペットの問題は何ですか?

スタックトレースは次のとおりです。ディレクトリ内の18本のビデオのそれぞれについて、次のエラーが発生します。

  [ 1 / 18 ]    File : 38-Meter High Dive Goes Wrong.avi     EXCEPTION IN READING 

   ME1 = 

MException

Properties:
identifier: 'MATLAB:UndefinedFunction'
   message: 'Undefined function or method 'VideoReader' for input arguments of type 'char'.'
     cause: {}
     stack: [3x1 struct]

 Methods


 ME1 = 

 MException

 Properties:
 identifier: 'MATLAB:UndefinedFunction'
   message: 'Undefined function or method 'VideoReader' for input arguments of type 'char'.'
     cause: {}
     stack: [3x1 struct]

 Methods

 MException

 Properties:
 identifier: 'MATLAB:UndefinedFunction'
   message: 'Undefined function or method 'VideoReader' for input arguments of type 'char'.'
     cause: {}
     stack: [3x1 struct]

 Methods

 Undefined function or method 'VideoReader' for input arguments of type 'char'.
 3x1 struct array with fields:
file
name
line

MATLAB:UndefinedFunction
Elapsed time is 0.017901 seconds.
4

1 に答える 1

1

コメントを装わなかったことをお詫びしますが、許可される前にもう少し担当者が必要です。

@JimInCOに同意します、あなたは持っていないようですVideoReader。これはR2010bで最初に導入されました。古いバージョンをお持ちの場合は、代わりにavireadを使用してみてください。

于 2013-02-03T03:00:34.253 に答える