FlannBased Matcher断言失败错误

时间:2012-06-19 11:06:40

标签: opencv matching

我在Windows 7中使用OpenCV2.2。我要做的是使用此代码检测另一个图像中的已定义对象:

// Read the two image files
Mat image1 = imread( argv[1], CV_LOAD_IMAGE_GRAYSCALE );
Mat image2 = imread( argv[2], CV_LOAD_IMAGE_GRAYSCALE );

Mat finalImage = imread(argv[2]);

if( !image1.data || !image2.data ) {
    std::cout << " --(!) Error reading images " << std::endl;
    return -10;
}

//Construct the SURF Detector
int minHessian = 400;
SurfFeatureDetector detector( minHessian );

//Extract the keypoints for each image
std::vector<KeyPoint> keypoints1, keypoints2;
detector.detect(image1,keypoints1);
detector.detect(image2,keypoints2);


//Calculate descriptors (feature vectors)
SurfDescriptorExtractor extractor;
Mat descriptors1, descriptors2;
extractor.compute(image1,keypoints1,descriptors1);
extractor.compute(image2,keypoints2,descriptors2);

//Define the Matcher
FlannBasedMatcher matcher;

std::cout << "matcher constructed!" << std::endl;

std::vector<vector<DMatch >> matches;
matcher.knnMatch(descriptors1, descriptors2, matches, 2);

std::cout << "matches: " << matches.size() << std::endl;

std::vector<DMatch > good_matches;

    //THIS LOOP IS SENSITIVE TO SEGFAULTS
for (int i = 0; i < min(descriptors2.rows-1,(int) matches.size()); i++) 
    {
        if((matches[i][0].distance < 0.8*(matches[i][1].distance)) && ((int) matches[i].size()<=2 && (int) matches[i].size()>0))
        {
            good_matches.push_back(matches[i][0]);
        }
    }

std::cout << "good_matches: " << good_matches.size() << std::endl;

VS2010无错误地构建和编译代码。我的问题是,在某些(而不是所有)情况下,当执行转到行

matcher.knnMatch(descriptors1, descriptors2, matches, 2);

cmd停止并返回如下信息:“断言失败(dataset.Type() == CvType(T)::type())未知功能等等。结束于flann.hpp第105行”

当图像之间没有相似性时(并非所有情况)都会发生这种情况,尽管从两个图像中正确地提取了描述符(匹配所需)。如果我使用BruteForce匹配器,代码工作正常。

我也尝试过OpenCV的代码:

http://opencv.itseez.com/doc/tutorials/features2d/feature_homography/feature_homography.html

并遇到了同样的问题。即使我使用Opencv示例中的简单匹配器,执行也会失败。

std::vector< DMatch > matches;

matcher.match( descriptors_object, descriptors_scene, matches );

我搜索了解决方案(在OpenCV flann.h assertion Error发现类似的问题,但遗憾的是没有回答),但我没有找到任何有用的信息。有谁知道如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

这很奇怪,它在this tutorial page ...

中接缝相同的代码

也许你可以尝试使用cv :: DescriptorMatcher接口(docs here)。

用法是:

cv::DescriptorMatcher matcher = cv::DescriptorMatcher::create("FlannBased");

然后您可以直接使用代码而无需任何更改。