- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 opencv 2.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 ‘>’ token
match.cpp:29:32: error: ‘matcher’ was not declared in this scope
我认为我使用的 opencv 版本存在一些问题,因为相同的代码在 2.2 版本上运行良好,但我不确定它是什么。帮助!!
#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;
}
最佳答案
现在调用 BruteForceMatcher
cv::BFMatcher
参见 documentation .
你可以这样定义匹配器:
DescriptorMatcher* hammingMatcher = new BFMatcher(NORM_HAMMING,false);
//or
DescriptorMatcher* hammingMatcher = new BFMatcher(NORM_L2,false);
编辑
也在这个sample您可以通过包含 header 查看如何使用旧版本匹配器的代码
#include "hammingseg.h"
关于c++ - 编译opencv代码时遇到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10813853/
我对 c# 有点陌生,我在尝试围绕这个 if-then 语句尝试实现时遇到了一些麻烦。 这是我的目标:当用户将订单输入系统时,将为每个订单创建一个唯一的 orderID。但是,一些附加功能是用户可以选
我已经搜索了这个特定的错误,发现根本问题涉及循环计数错误并导致程序超出数组的界限。 但是,当我将每个数组降低到数组开始丢失输出数据的程度后,它继续抛出相同的错误。我对 C/C++ 仍然是新手,但任何对
我不明白为什么我运行这个小程序时屏幕上没有任何显示? while 循环甚至开始了吗? #include #include int main() { char word[20]; char
我接手了一个用 Perl 编写的项目,它有一些依赖项,例如 Template::Toolkit , Image::ExifTool , 和 GD仅举几例。目前,这些依赖项使用 --prefix 构建到
我想对一个字段进行累积总和,但只要遇到 0 就重置聚合值。 这是我想要的一个例子: data.frame(campaign = letters[1:4] , date=c("jan","
不久前,该项目的 gradle 构建运行良好,但现在一直失败并显示以下错误(带有 --info 标志的输出): Starting process 'Gradle Test Executor 1'. W
我是编程新手,想用 Java 制作一个掷骰子程序来执行。代码如下: import java.math.*; public class Dices { public static int dice1=0
这个问题已经有答案了: What is a StringIndexOutOfBoundsException? How can I fix it? (1 个回答) 已关闭 5 年前。 我对 Java 完
这个方法一直抛出标题中的异常,我找不到原因,我已经通过连接创建了其他表,并且所有引用的表都已创建。我正在使用嵌入式JavaDB . private void createEvidenceTable()
我刚开始上课,这是我第三次尝试上课。我遇到了一个 NameError,我真的不知道如何解决。看看我的程序,看看你能不能帮忙。 import random import math import pyga
好吧,这是我的困境,我向 JFrame 添加了三个面板。第一个(不可见)第二个(可见)和第三个(不可见)..我使用第一个面板作为菜单,当您选择一个选项时,第一个面板被制作(可见),然后第三个面板被制作
我的部分代码遇到问题。如果我选择选项 A,它会运行并给我正确的答案,但是,如果我选择选项 S 或 M,它不会给我任何结果,只会去到它应该去的地方。已经尝试将 if 更改为 else if,但它显示“预
我这里有一些代码,但我正在努力解决它,因为我似乎无法掌握这个文件指针的东西。我对使用文件还很陌生。我见过类似的其他问题,并且尝试了对其他人有效的解决方案,但由于某种原因它们对我不起作用。这是出现问题的
我们有一个很大的应用程序,我们已经将 TODO 规则添加到质量门中,如果发现 TODO 注释,它会给出错误。如果我们只是删除 TODO 注释(这很可怕),它会起作用,但添加 TODO 注释的整个目的就
我正在尝试编写一个名为 isVowel 的函数,它接受一个字符(即长度为 1 的字符串)并在它是元音、大写或小写时返回“true”。如果该字符不是元音字母,该函数应返回“false”。 这看起来应该可
我一直在努力完成我正在做的这个小项目,但由于某种原因它无法正常工作。 问题是当我第一次访问该页面并单击出现在主要部分中的第一个链接时,它会根据需要显示弹出框。现在,当我点击另一天,例如星期天并尝试点击
我正在尝试制作一个 WPF 应用程序。我的窗口内有一个数据网格。我制作了另一个窗口,将新数据添加到我的数据网格中。虽然它按照我想要的方式工作,但我不断遇到异常。我的 MySQL 代码: using S
我试图在我似乎无法使 NSUserDefaults 正常工作的程序中保存几个首选项。如果有人可以查看我的代码并查看是否有任何错误,我们将不胜感激 NSString *kGameIsPaused = @
设置 SymmetricDS版本是3.9.1(也试过3.9.0) 设置是从 postgres 9.5.3 到 postgres 9.5.3 Windows 10 pc(客户端节点)到 Windows
经过长时间的努力,我终于(差不多)完成了我的java菜单程序。但是,我无法让我的返回更改功能在我的代码末尾工作。它给出了非常奇数的数字。有什么想法吗? 代码: import java.io.*; im
我是一名优秀的程序员,十分优秀!