2011-12-15 69 views
1

我寫了一個程序,它獲取2張圖片之間的匹配。 這是代碼。但如果我使用BruteForceMatcher>(不是flann),它可以工作。OpenCV flann.h斷言錯誤

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

using namespace cv; 

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() 
{ 

    Mat img1 = imread("C:\\Users\\Hayk\\Desktop\\source1.bmp", CV_LOAD_IMAGE_GRAYSCALE); 
    Mat img2 = imread("C:\\Users\\Hayk\\Desktop\\source2.bmp", CV_LOAD_IMAGE_GRAYSCALE); 
    if(img1.empty() || img2.empty()) 
    { 
     printf("Can't read one of the images\n"); 
     return -1; 
    } 

    // detecting keypoints 
    SurfFeatureDetector detector(6000); 
    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 
    FlannBasedMatcher matcher; 
    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; 
} 

而這個錯誤,我正在運行的程序

OpenCV Error: Assertion failed (dataset.type() == CvType<T>::type()) in unknown 
function, file c:\Users\vp\work\ocv\opencv\modules\features2d\..\flann\include\o 
pencv2/flann/flann.hpp, line 105 

任何人都可以對我說什麼,我做錯了之後的故事嗎?

+0

您是否至少確定了導致此錯誤的確切線? – karlphillip 2011-12-16 11:22:28

回答

2

你的代碼在OpenCV 2.3.1a的Linux上工作得很好。

我在使用C++ OpenCV的Windows界面時遇到了一些問題。當我必須使用Windows時,我使用C界面。

+0

謝謝,我會嘗試,但這個代碼應該工作,因爲我發現它在[官方網站](http://opencv.itseez.com/doc/user_guide/ug_features2d.html#the-code)只有一個區別在我的代碼之間(在官方代碼中,他們使用BruteForceMatcher > matcher,但我嘗試使用FlannBasedMatcher匹配器;我想知道爲什麼「flann」不工作,而「brute」正在工作。感謝您的關注我的問題:) – haykart 2011-12-16 12:01:09

+0

同樣在這裏,使用OpenCV 2.2.x在Linux上正常工作。 – Unapiedra 2011-12-16 12:03:47

1

你說這是適用於BruteForceMatcher,但不是Flann。我創建了一個最小的例子。你能否運行這個並告訴我,你是否得到了與你的問題相同的錯誤?

只是試圖找出問題所在。

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

using namespace cv; 

int main() 
{ 
    // Five descriptors with random values between 0 and 0.2 
    Mat descriptors(5, 64, CV_32FC1); 
    RNG rng; 
    rng.fill(descriptors, cv::RNG::UNIFORM, 0.0, 0.2); 


    // the query descriptor should yield a match in row 3 of the train descriptors 
    Mat query_descriptors; 
    query_descriptors.push_back(descriptors.row(3)); 

    // Match using Brute Force. On your machine this should work. 
    BruteForceMatcher< L2<float> > brute_matcher; 
    vector<DMatch> matches; 
    brute_matcher.match(query_descriptors, descriptors, matches); 
    std::cout << "Brute Force Matcher: " << std::endl; 
    for(int i=0; i<matches.size(); ++i) 
    { 
     std::cout << matches[i].queryIdx << " <--> " << matches[i].trainIdx << std::endl; 
    } 


    // The code should fail here because we are now going to use the FlannBasedMatcher 
    std::cout << "Flann Based Matcher: " << std::endl; 
    FlannBasedMatcher matcher; 
    matcher.match(query_descriptors, descriptors, matches); 
    for(int i=0; i<matches.size(); ++i) 
    { 
     std::cout << matches[i].queryIdx << " <--> " << matches[i].trainIdx << std::endl; 
    } 

    return 0; 
}