遵循Install OpenCV and compile C program using GCC的建议,
我仍然从命令中收到以下错误消息" gcc pkg-config --cflags opencv
FrameExtractor.c pkg-config --libs opencv
-o fe"
这是简化的源代码,它具有相同的错误消息
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <stdio.h>
int main( int argc, char** argv )
{
CvCapture* videoFileCapture = cvCreateFileCapture( argv[1] );
if( NULL == videoFileCapture )
{
return -1;
}
cvReleaseCapture( &videoFileCapture );
return 0;
}
系统: Ubuntu 14.04.4 LTS
的OpenCV: 3.1.0
如果有任何建议,请告诉我,并感谢您抽出时间回答我的问题。