0

我对 Opencv 真的很陌生。按照说明下载并安装Opencv 2.4后,我开始编写我的第一个Opencv程序,基本上就是照搬网上的教程。

#include <stdio.h>
#include <iostream>
#include <vector>

#include "cv.h"
#include "highgui.h"
#include <stdio.h>
#include <stdlib.h>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;

int main( int argc, char** argv )
{
    char* filename = "C:\\Research\abc.pgm";  
     IplImage *img0;

    if( (img0 = cvLoadImage(filename,-1)) == 0 )
        return 0;

    cvNamedWindow( "image", 0 );
    cvShowImage( "image", img0 );
    cvWaitKey(0);  
    cvDestroyWindow("image");
    cvReleaseImage(&img0);



    return 0;
}

这些代码运行良好,但您可能会注意到,在上面调用 Opencv 函数的代码中是 C 代码方式。因此,我决定使用以下代码继续使用 C++ 代码方式:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>

using namespace cv;
using namespace std; 

int main( int argc, char** argv )
{ 
    if( argc != 2) 
    {
     cout <<" Usage: display_image ImageToLoadAndDisplay" << endl;
     return -1;
    }

    Mat image;
    image = imread(argv[1], CV_LOAD_IMAGE_COLOR);   // Read the file

    if(! image.data )                              // Check for invalid input
    {
        cout <<  "Could not open or find the image" << std::endl ;
        return -1;
    }

    namedWindow( "Display window", CV_WINDOW_AUTOSIZE );// Create a window for display.
    imshow( "Display window", image );                   // Show our image inside it.

    waitKey(0);                                          // Wait for a keystroke in the window
    return 0;
}

然而,在这种情况下,尽管编译看起来不错,但程序有几个链接错误。我收到的链接错误如下:

Error   2   error LNK2019: unresolved external symbol "void __cdecl cv::namedWindow(class stlp_std::basic_string<char,class stlp_std::char_traits<char>,class stlp_std::allocator<char> > const &,int)" (?namedWindow@cv@@YAXABV?$basic_string@DV?$char_traits@D@stlp_std@@V?$allocator@D@2@@stlp_std@@H@Z) referenced in function _main    C:\Research\OpencvTest\OpencvTest.obj
Error   1   error LNK2019: unresolved external symbol "void __cdecl cv::imshow(class stlp_std::basic_string<char,class stlp_std::char_traits<char>,class stlp_std::allocator<char> > const &,class cv::_InputArray const &)" (?imshow@cv@@YAXABV?$basic_string@DV?$char_traits@D@stlp_std@@V?$allocator@D@2@@stlp_std@@ABV_InputArray@1@@Z) referenced in function _main    C:\Research\OpencvTest\OpencvTest.obj

我很确定我在我的程序中添加了必要的Opencv库(我使用VC10),我添加的附加库如下:

stl_port.lib
opencv_highgui242d.lib
opencv_core242d.lib

我想知道我的设置有什么问题。为什么它适用于第一个程序而不适用于第二个程序?任何想法将不胜感激。谢谢!

4

1 回答 1

1

它与混合 STLPort 和 MSVC STL 有关。您可能没有自己构建 OpenCV 库,所以他们使用的是 VC10 STL。使用 C 接口,char*但使用 C++ 接口时,链接器会与方法中的方法混淆std::stringimread如果您也将其输入到,您应该会看到相同的结果string

我可以在我的项目中混合 STL 实现吗?

于 2012-08-02T18:37:44.427 回答