を使用してビデオを再生しようとしていopencv
ます(ビデオはディスクに保存されているaviファイルです)。ただし、プログラムは次の行で実行を停止しますcap_ffmppeg.cpp
。
if(!ffmpegCapture ||
!icvRetrieveFrame_FFMPEG_p(ffmpegCapture,&data,&step,&width,&height,&cn))
return 0;
エラーは次のとおりAccess violation reading location
です。...したがって、最初capture >> frame
に実行されたときにセグメンテーション違反が発生しています。
プログラムは次のとおりです。
#include<iostream>
#include<fstream>
#include<cv.h>
#include<highgui.h>
#include<opencv2/nonfree/features2d.hpp>
using namespace std;
using namespace cv;
int main(int argc, char *argv[])
{
if (argc <= 1)
{
printf("Usage: %s video\n", argv[0]);
return -1;
}
VideoCapture capture(argv[1]);
if(!capture.isOpened())
{
printf("Failed to open the video\n");
return -1;
}
for(;;)
{
Mat frame;
capture >> frame; // get a new frame from camera
}
return 0;
}
私が間違っていることについて何か考えはありますか?