2

私はopencv2.4を使用しており、以下はコンパイルしようとしているコードです。このコマンドを使用してコードをコンパイルします

g++ -o "match" -ggdb `pkg-config --cflags opencv` match.cpp `pkg-config --libs opencv` 

このエラーが発生する理由:

match.cpp: In function ‘int main(int, const char**)’:
match.cpp:18:37: error: expected type-specifier before ‘SurfFeatureDetector’
match.cpp:18:37: error: conversion from ‘int*’ to non-scalar type ‘cv::Ptr<cv::FeatureDetector>’ requested
match.cpp:18:37: error: expected ‘,’ or ‘;’ before ‘SurfFeatureDetector’
match.cpp:22:2: error: ‘SurfDescriptorExtractor’ was not declared in this scope
match.cpp:22:26: error: expected ‘;’ before ‘extractor’
match.cpp:26:2: error: ‘extractor’ was not declared in this scope
match.cpp:29:2: error: ‘BruteForceMatcher’ was not declared in this scope
match.cpp:29:30: error: expected primary-expression before ‘&gt;’ token
match.cpp:29:32: error: ‘matcher’ was not declared in this scope

同じコードが2.2バージョンで正常に実行されるため、使用しているopencvのバージョンに問題があると思いますが、それが何であるかはわかりません。ヘルプ !!

#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <string.h>
#include <iostream>

using namespace std;
using namespace cv;


int main(int argc, const char* argv[])
{
    cout << argv[1] << endl << argv[2] << endl;
    Mat img1 = imread(argv[1] , CV_LOAD_IMAGE_GRAYSCALE );
    Mat img2 = imread(argv[2] , CV_LOAD_IMAGE_GRAYSCALE );

    vector<KeyPoint> keypoints1;
    vector<KeyPoint> keypoints2;
    Ptr<FeatureDetector> feature = new SurfFeatureDetector(2500);
    feature->detect(img1,keypoints1);
    feature->detect(img2,keypoints2);

    SurfDescriptorExtractor extractor;

    Mat desc1 , desc2;

    extractor.compute(img1,keypoints1,desc1);
    extractor.compute(img2,keypoints2,desc2);

    BruteForceMatcher<L2<float> > matcher;

    vector<vector<DMatch> > matches1;
    vector<vector<DMatch> > matches2;
    vector<DMatch> symMatches;
    vector<DMatch> outMatches;

    matcher.knnMatch(desc1,desc2,matches1,2);
    matcher.knnMatch(desc2,desc1,matches2,2);

    int count_inliers = 0 , count_matches = 0;

    for(vector<vector<DMatch> >::const_iterator matIt1 = matches1.begin(); matIt1 != matches1.end(); ++matIt1){
        count_matches++;
        if(matIt1->size() < 2)
            continue;
        for(vector<vector<DMatch> >::const_iterator matIt2 = matches2.begin(); matIt2 != matches2.end(); ++matIt2){
            if(matIt2->size() < 2)
                continue;
            if((*matIt1)[0].queryIdx == (*matIt2)[0].trainIdx && (*matIt2)[0].queryIdx == (*matIt1)[0].trainIdx){
                count_inliers++;
                symMatches.push_back(DMatch((*matIt1)[0].queryIdx,(*matIt1)[0].trainIdx,(*matIt1)[0].distance));
                break;
            }
        }
    }

    vector<Point2f> points1, points2;

    for(vector<DMatch>::const_iterator it = symMatches.begin(); it!=symMatches.end(); ++it){
        float x = keypoints1[it->queryIdx].pt.x;
        float y = keypoints1[it->queryIdx].pt.y;
        points1.push_back(Point2f(x,y));

        x = keypoints2[it->trainIdx].pt.x;
        y = keypoints2[it->trainIdx].pt.y;
        points2.push_back(Point2f(x,y));
    }

    vector<uchar> inliers(points1.size(),0);

    Mat fundamental;
    fundamental = findFundamentalMat(Mat(points2),Mat(points1),inliers,CV_FM_RANSAC,2,0.8);

    vector<uchar>::const_iterator itIn = inliers.begin();
    vector<DMatch>::const_iterator itM = symMatches.begin();
    for(;itIn!=inliers.end();++itIn,++itM){
        if(*itIn){
            outMatches.push_back(*itM);
        }
    }
    cout << count_inliers << endl;
    cout << count_matches << endl;
    cout << (float) count_inliers/(float) count_matches << endl;

    float diff = (float) count_inliers/(float) count_matches;
//  if(diff > 0.30){
//      cout << "Similar Images " << endl << "-----------------" << endl;
//      exit(1);
//  }

//  vector<uchar> inliers(points1.size(),0);
    Mat homography = findHomography(Mat(points2),Mat(points1),inliers,CV_RANSAC,1);

    vector<Point2f>::const_iterator itPts = points1.begin();
//  vector<uchar>::const_iterator itIn = inliers.begin();
/*  while(itPts != points1.end()){
        if(*itIn)
            circle(img1,*itPts,3,Scalar(255,255,255),2);
        ++itPts;
        ++itIn;
    }
    itPts = points2.begin();
    itIn = inliers.begin();
    while(itPts != points2.end()){
        if(*itIn)
            circle(img2,*itPts,3,Scalar(255,255,255),2);
        ++itPts;
        ++itIn;
    }
*/

    Mat result;

    warpPerspective(img2,result,homography,Size(2*img2.cols,img2.rows));
    Mat half(result,Rect(0,0,img1.cols,img1.rows));

    img1.copyTo(half);





    // Add results to image and save.
    char name[1000];

//    strcpy(name,"./surf/surf");
//    strcat(name,argv[1]);

    cv::Mat output1;
    cv::Mat output2;
    cv::drawKeypoints(img1, keypoints1, output1);
    cv::drawKeypoints(img2, keypoints2, output2);
    cv::imwrite("./surf/img11.png", img1);
    cv::imwrite("./surf/img21.png", img2);
    cv::imwrite("./surf/img31.png", result);
    cv::imwrite("./surf/tt.png", result);
    cv::imwrite("./surf/img41.png", half);
    cv::imwrite("./surf/img51.png", output1);
    cv::imwrite("./surf/img61.png", output2);

    return 0;
}
4

6 に答える 6

10

BruteForceMatcherと呼ばれるようになりました

cv::BFMatcher

ドキュメントを参照してください。

次のようにマッチャーを定義できます。

DescriptorMatcher* hammingMatcher = new BFMatcher(NORM_HAMMING,false);
//or
DescriptorMatcher* hammingMatcher = new BFMatcher(NORM_L2,false);

編集

また、このサンプルコードでは、ヘッダーを含めることで古いバージョンのマッチャーを使用する方法を確認できます。

#include "hammingseg.h"
于 2012-09-20T07:56:32.393 に答える
5

SURFおよびSIFT検出器については、この説明を読んでください。これらは非フリーとして移動されました。

libopencv_nonfree.soリンクとにダイナミックライブラリとしても追加しlibopencv_features2d.soます。

それはまだ未解決の問題のBruteForceMatcherように見えますが、私はかなり確実にその1つに含まれて.soおり、ヘッダーも変更されたことを願っています。あなたが私について何かを見つけたら、BruteForceMatcher私は感謝します。

于 2012-06-09T11:01:31.500 に答える
3

以下を含む

#"opencv2/features2d/features2d.hpp"
#"opencv2/highgui/highgui.hpp"
#"opencv2/core/core.hpp"
#"opencv2/legacy/legacy.hpp" (BruteForceMatcher is defined here!)

と以下に対してリンク

#opencv_core.so
#opencv_flann.soo (if youre using the FLANN matcher)
#opencv_highgui.so
#opencv_features2d.so
#opencv_nonfree.so

私のためにトリックをしているようでした。お役に立てれば。

于 2012-08-27T22:13:40.880 に答える
0

SurfFeatureDetectorのヘッダーファイルをインクルードする必要があるようです

これがAPIで、次のように言及されています

#include <features2d.hpp>

パス全体を含むファイルを含める代わりに、名前だけを含め、コンパイラー引数(-I)にパスを指定させます。これははるかにポータブルです。

そして、そこで定義されていない場合は、それを探します。Linuxでは、次のことができます。

# find . -name "*.h*" | xargs grep SurfFeatureDetector | grep class
# find . -name "*.h*" | xargs grep BruteForceMatcher | grep class

これにより、SurfFeatureDetectorのすべての*.hおよび*.hppファイルとgrepが取得され、それらの結果については、クラスのgrepが取得されます。

于 2012-05-30T10:28:15.570 に答える
0

その本当にシンプル:

//matching descriptors
cv::BFMatcher matcher(cv::NORM_L2, true);
std::vector<cv::DMatch> matches;
matcher.match(descriptor1, descriptor2, matches);

フラグ設定がtrueの場合、すでにクロスチェックが行われます。

于 2013-02-07T07:30:49.370 に答える
0
#include <opencv2/legacy/legacy.hpp>

この行を追加すると、以前と同じように機能します。

于 2013-10-24T17:48:56.367 に答える