如何使Visual Studio具有OpenCV支持来编译我的应用程序?

时间:2018-12-11 19:47:26

标签: c++ visual-studio opencv linker unresolved-external

我需要编译并运行一个使用OpenCV的Windows程序。为此,我已经下载并安装了MS Visual Studio 2010。我确认可以编译并运行Hello World终端应用程序。

现在,我已经安装了OpenCV并相应地设置了Compiler和Linker路径。我写了一个示例应用程序:

#include "stdafx.h"
#include<opencv2/opencv.hpp>
#include<iostream>

using namespace cv;

int _tmain(int argc, _TCHAR* argv[])
{
    Mat img = imread("7MLS142.jpg");
    namedWindow("image", WINDOW_NORMAL);
    imshow("image", img);
    waitKey(0);
    return 0;
}

但是当我要编译并运行它时会出现以下错误:

1>------ Build started: Project: Hello_World, Configuration: Debug Win32 ------
1>Build started 2018-12-11 11:42:00 AM.
1>InitializeBuildStatus:
1>  Touching "Debug\Hello_World.unsuccessfulbuild".
1>ClCompile:
1>  All outputs are up-to-date.
1>  Hello_World.cpp
1>ManifestResourceCompile:
1>  All outputs are up-to-date.
1>Hello_World.obj : error LNK2019: unresolved external symbol "int __cdecl cv::waitKey(int)" (?waitKey@cv@@YAHH@Z) referenced in function _wmain
1>Hello_World.obj : error LNK2019: unresolved external symbol "void __cdecl cv::imshow(class cv::String const &,class cv::debug_build_guard::_InputArray const &)" (?imshow@cv@@YAXABVString@1@ABV_InputArray@debug_build_guard@1@@Z) referenced in function _wmain
1>Hello_World.obj : error LNK2019: unresolved external symbol "void __cdecl cv::namedWindow(class cv::String const &,int)" (?namedWindow@cv@@YAXABVString@1@H@Z) referenced in function _wmain
1>Hello_World.obj : error LNK2019: unresolved external symbol "class cv::Mat __cdecl cv::imread(class cv::String const &,int)" (?imread@cv@@YA?AVMat@1@ABVString@1@H@Z) referenced in function _wmain
1>Hello_World.obj : error LNK2019: unresolved external symbol "private: char * __thiscall cv::String::allocate(unsigned int)" (?allocate@String@cv@@AAEPADI@Z) referenced in function "public: __thiscall cv::String::String(char const *)" (??0String@cv@@QAE@PBD@Z)
1>Hello_World.obj : error LNK2019: unresolved external symbol "private: void __thiscall cv::String::deallocate(void)" (?deallocate@String@cv@@AAEXXZ) referenced in function "public: __thiscall cv::String::~String(void)" (??1String@cv@@QAE@XZ)
1>Hello_World.obj : error LNK2019: unresolved external symbol "void __cdecl cv::fastFree(void *)" (?fastFree@cv@@YAXPAX@Z) referenced in function "public: __thiscall cv::Mat::~Mat(void)" (??1Mat@cv@@QAE@XZ)
1>Hello_World.obj : error LNK2019: unresolved external symbol "public: void __thiscall cv::Mat::deallocate(void)" (?deallocate@Mat@cv@@QAEXXZ) referenced in function "public: void __thiscall cv::Mat::release(void)" (?release@Mat@cv@@QAEXXZ)
1>c:\users\rideo\src\visual studio 2010\Projects\Hello_World\Debug\Hello_World.exe : fatal error LNK1120: 8 unresolved externals
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:03.46

Additional library path设置中将Linker设置为%OPENCV_DIR%\bin(其中有setx -m OPENCV_DIR C:\Users\rideo\opencv\build\x64\vc14vc14)目录,并且我已经安装了“ Visual Studio 2010”-是什么引起了这里的问题?

更新

我现在已经安装了vc15,设置为C:\ Users \ rideo \ opencv \ build \ x64 \ vc15`,打开了相同的项目,但仍然得到:

MS Visual Studio Professional 2015

这是1>------ Rebuild All started: Project: Hello_World, Configuration: Debug Win32 ------ 1>Build started 2018-12-11 2:09:41 PM. 1> 1> 1>_PrepareForClean: 1> Deleting file "Debug\Hello_World.tlog\Hello_World.lastbuildstate". 1> InitializeBuildStatus: 1> Touching "Debug\Hello_World.tlog\unsuccessfulbuild". 1> ClCompile: 1> stdafx.cpp 1> Hello_World.cpp 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "void __cdecl cv::fastFree(void *)" (?fastFree@cv@@YAXPAX@Z) referenced in function "public: __thiscall cv::Mat::~Mat(void)" (??1Mat@cv@@QAE@XZ) 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "private: char * __thiscall cv::String::allocate(unsigned int)" (?allocate@String@cv@@AAEPADI@Z) referenced in function "public: __thiscall cv::String::String(char const *)" (??0String@cv@@QAE@PBD@Z) 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "private: void __thiscall cv::String::deallocate(void)" (?deallocate@String@cv@@AAEXXZ) referenced in function "public: __thiscall cv::String::~String(void)" (??1String@cv@@QAE@XZ) 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "public: void __thiscall cv::Mat::deallocate(void)" (?deallocate@Mat@cv@@QAEXXZ) referenced in function "public: void __thiscall cv::Mat::release(void)" (?release@Mat@cv@@QAEXXZ) 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "class cv::Mat __cdecl cv::imread(class cv::String const &,int)" (?imread@cv@@YA?AVMat@1@ABVString@1@H@Z) referenced in function _wmain 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "void __cdecl cv::namedWindow(class cv::String const &,int)" (?namedWindow@cv@@YAXABVString@1@H@Z) referenced in function _wmain 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "int __cdecl cv::waitKey(int)" (?waitKey@cv@@YAHH@Z) referenced in function _wmain 1> 1> 1>Hello_World.obj : error LNK2019: unresolved external symbol "void __cdecl cv::imshow(class cv::String const &,class cv::debug_build_guard::_InputArray const &)" (?imshow@cv@@YAXABVString@1@ABV_InputArray@debug_build_guard@1@@Z) referenced in function _wmain 1> 1> 1>C:\Users\rideo\src\visual studio 2010\Projects\Hello_World\Debug\Hello_World.exe : fatal error LNK1120: 8 unresolved externals 1> 1>Build FAILED. 1> 1>Time Elapsed 00:00:01.92 ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========

1 个答案:

答案 0 :(得分:2)

vc14适用于使用Visual studio 2015的构建。

但是您已经安装了Visual Studio 2010

对于VS2010,应使用(取决于32位或64位)设置环境变量

setx -m OPENCV_DIR D:\OpenCV\Build\x86\vc10     (suggested for Visual Studio 2010 - 32 bit Windows)
setx -m OPENCV_DIR D:\OpenCV\Build\x64\vc10     (suggested for Visual Studio 2010 - 64 bit Windows)

以下是有关使用静态或动态库的更多指导:

https://docs.opencv.org/2.4/doc/tutorials/introduction/windows_install/windows_install.html#windowssetpathandenviromentvariable

这是带有屏幕截图的详细指南,涉及在Visual Studio 2015 C ++项目中使用OpenCV所需的所有必需项目设置。

https://www.opencv-srf.com/2017/11/install-opencv-with-visual-studio.html