c++ - OpenCV 3.0 未定义的引用错误?

标签 c++ opencv ubuntu cmake

我刚刚按照说明在我的 ubuntu 计算机上安装了 opencv 3(我已经在不同的 linux 设备上安装并运行了使用 opencv 3 的程序),但是,当我尝试运行我的一个测试程序时我的旧电脑出现以下错误:

CMakeFiles/VideoTest.dir/VideoTest.cpp.o: In function `main':
VideoTest.cpp:(.text+0x6f): undefined reference to `cv::VideoWriter::fourcc(char,char,char, char)'
VideoTest.cpp:(.text+0xc3): undefined reference to `cv::VideoWriter::open(cv::String const&, int, double, cv::Size_<int>, bool)'
VideoTest.cpp:(.text+0x103): undefined reference to `cv::namedWindow(cv::String const&, int)'
VideoTest.cpp:(.text+0x146): undefined reference to `cv::VideoCapture::read(cv::_OutputArray const&)'
VideoTest.cpp:(.text+0x1b1): undefined reference to `cv::imshow(cv::String const&, cv::_InputArray const&)'
CMakeFiles/VideoTest.dir/VideoTest.cpp.o: In function `cv::String::String(char const*)':
VideoTest.cpp:(.text._ZN2cv6StringC2EPKc[_ZN2cv6StringC5EPKc]+0x3b): undefined reference to `cv::String::allocate(unsigned int)'
CMakeFiles/VideoTest.dir/VideoTest.cpp.o: In function `cv::String::~String()':
VideoTest.cpp:(.text._ZN2cv6StringD2Ev[_ZN2cv6StringD5Ev]+0xd): undefined reference to `cv::String::deallocate()'
collect2: ld returned 1 exit status
make[2]: *** [VideoTest] Error 1
make[1]: *** [CMakeFiles/VideoTest.dir/all] Error 2
make: *** [all] Error 2

知道发生了什么吗?我对opencv比较陌生。这是我的测试代码供引用:

#include "opencv2/highgui/highgui.hpp"
#include "opencv2/opencv.hpp"
#include <iostream>

using namespace cv;
using namespace std;

int main(int argc, char* argv[]){
    VideoCapture vCap(0);
    VideoWriter vWrite;
    vWrite.open("test.avi", vWrite.fourcc('M','J','P','G'), 20, Size(640, 480), true);
    while (1) {
        namedWindow("VideoFeed", WINDOW_AUTOSIZE);
        Mat frame;
        vCap.read(frame);
        vWrite.write(frame);
        imshow("VideoFeed", frame);
        char c = waitKey(50);
        if (c == 27) {
            break;
        }
    }
    return 0;
}

提前致谢。

编辑:我的 CMakeLists.txt:

cmake_minimum_required(VERSION 2.8)
project(VideoTest)
find_package(OpenCV REQUIRED)
add_executable(VideoTest VideoTest.cpp)
target_link_libraries(VideoTest ${OpenCV_LIBS})

最佳答案

VideoCapture 和 VideoWriter 在 3.0 中被移到了 videoio 模块,所以你必须另外

#include "opencv2/videoio.hpp"

另外,您似乎没有链接到任何必需的opencv库,这些是:

opencv_core, opencv_videoio, opencv_highgui

关于c++ - OpenCV 3.0 未定义的引用错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25876684/

相关文章:

c++ - 如何理解 C++ 中的 MNIST 二进制转换器?

c++ - 为什么获取网站源码时会出现特殊字符? C++

c++ - "Updating"文件中的一行被覆盖

android - Android 版 OpenCV : Simple example to convert Image to Greyscale

python - 导入错误 : No module named redis

c++ - 尝试保存与成员 vector 的连接 - 一次只保存一个

android - 使用 WSL2 为空的 ADB 设备列表

C++ 流位掩码为 boolean 值?

python - 在 OpenCV (Python) 中,为什么我从灰度图像中获得 3 channel 图像?

opencv - 如何去除图像数字之间不需要的噪声