2013-10-30 2 views
0

Visual Studio 2012에서 OpenCV 2.4.6을 사용하고 있으며 샘플 프로그램 인 이름 matcher_simple.cpp 중 하나를 테스트했습니다.이 샘플 이미지는 image1과 image2의 두 샘플 이미지와 일치합니다. 내가 릴리스 모드 64 비트에서이 테스트를 한opencv의 링커 문제

1>------ Build started: Project: opencvreinstated, Configuration: Release x64 ------ 
1>matcher_simple.obj : error LNK2001: unresolved external symbol "public: __cdecl cv::SURF::SURF(void)" ([email protected]@@[email protected]) 
1>matcher_simple.obj : error LNK2001: unresolved external symbol "public: __cdecl cv::SURF::SURF(double,int,int,bool,bool)" ([email protected]@@[email protected][email protected]) 
1>C:\Users\motiur\documents\visual studio 2012\Projects\opencvreinstated\x64\Release\opencvreinstated.exe : fatal error LNK1120: 2 unresolved externals 
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== 

, 나는 또한 성공적으로 라이브 비디오 스트리밍, 예를 들어, 간단한 다른 OpenCV의 샘플을 실행 한 : 컴파일에

#include <stdio.h> 
#include "opencv2/core/core.hpp" 
#include "opencv2/features2d/features2d.hpp" 
#include "opencv2/highgui/highgui.hpp" 
#include "opencv2/nonfree/nonfree.hpp" 
#include "opencv2/opencv.hpp" 

using namespace cv; 

static void help() 
{ 
    printf("\nThis program demonstrates using features2d detector, descriptor extractor and simple matcher\n" 
      "Using the SURF desriptor:\n" 
      "\n" 
      "Usage:\n matcher_simple <image1> <image2>\n"); 
} 

int main(int argc, char** argv) 
{ 
    if(argc != 3) 
    { 
     help(); 
     return -1; 
    } 

    //cv::initModule_nonfree(); 
    Mat img1 = imread(argv[1], CV_LOAD_IMAGE_GRAYSCALE); 
    Mat img2 = imread(argv[2], CV_LOAD_IMAGE_GRAYSCALE); 
    if(img1.empty() || img2.empty()) 
    { 
     printf("Can't read one of the images\n"); 
     return -1; 
    } 


    // detecting keypoints 
    SurfFeatureDetector detector(400); 
    vector<KeyPoint> keypoints1, keypoints2; 
    detector.detect(img1, keypoints1); 
    detector.detect(img2, keypoints2); 

    // computing descriptors 
    SurfDescriptorExtractor extractor; 
    Mat descriptors1, descriptors2; 
    extractor.compute(img1, keypoints1, descriptors1); 
    extractor.compute(img2, keypoints2, descriptors2); 

    // matching descriptors 
    BFMatcher matcher(NORM_L2); 
    vector<DMatch> matches; 
    matcher.match(descriptors1, descriptors2, matches); 

    // drawing the results 
    namedWindow("matches", 1); 
    Mat img_matches; 
    drawMatches(img1, keypoints1, img2, keypoints2, matches, img_matches); 
    imshow("matches", img_matches); 
    waitKey(0); 

    return 0; 
} 

나는이 오류가 발생합니다. 이런 종류의 문제는 없었습니다. 도움을 주시면 감사하겠습니다. 감사.

답변