OpenCV3中未定义的引用

时间:2016-04-10 04:10:14

标签: c ubuntu gcc ubuntu-14.04 opencv3.0

遵循Install OpenCV and compile C program using GCC的建议,

我仍然从命令中收到以下错误消息" gcc pkg-config --cflags opencv FrameExtractor.c pkg-config --libs opencv -o fe"

enter image description here

这是简化的源代码,它具有相同的错误消息

#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

pkg-config --cflags opencv: enter image description here

pkg-config --libs opencv: enter image description here

如果有任何建议,请告诉我,并感谢您抽出时间回答我的问题。

0 个答案:

没有答案