- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试在 opencv-3.0.0 中实现 SURF 算法为此,我包含了头文件
#include <stdio.h>
#include <iostream>
#include "opencv2/core.hpp"
#include "opencv2/features2d.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/calib3d.hpp"
#include "opencv2/xfeatures2d.hpp"
#include "opencv2/calib3d.hpp"
#include <opencv2/nonfree/nonfree.hpp>
using namespace cv;
using namespace std;
但我不断收到下面提到的错误。我试过到处搜索但找不到任何解决方案。我已经构建了带有额外依赖项的 opencv 模块。
In file included from /usr/include/opencv2/nonfree/nonfree.hpp:46:0,
from panaroma.cpp:7:
/usr/include/opencv2/nonfree/features2d.hpp:73:21: error: ‘vector’ has not been declared
vector<KeyPoint>& keypoints) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:73:27: error: expected ‘,’ or ‘...’ before ‘<’ token
vector<KeyPoint>& keypoints) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:77:21: error: ‘vector’ has not been declared
vector<KeyPoint>& keypoints,
^
/usr/include/opencv2/nonfree/features2d.hpp:77:27: error: expected ‘,’ or ‘...’ before ‘<’ token
vector<KeyPoint>& keypoints,
^
/usr/include/opencv2/nonfree/features2d.hpp:76:10: error: ‘void cv::SIFT::operator()(cv::InputArray, cv::InputArray, int) const’ cannot be overloaded
void operator()(InputArray img, InputArray mask,
^
/usr/include/opencv2/nonfree/features2d.hpp:72:10: error: with ‘void cv::SIFT::operator()(cv::InputArray, cv::InputArray, int) const’
void operator()(InputArray img, InputArray mask,
^
/usr/include/opencv2/nonfree/features2d.hpp:81:5: error: ‘AlgorithmInfo’ does not name a type
AlgorithmInfo* info() const;
^
/usr/include/opencv2/nonfree/features2d.hpp:83:49: error: ‘vector’ has not been declared
void buildGaussianPyramid( const Mat& base, vector<Mat>& pyr, int nOctaves ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:83:55: error: expected ‘,’ or ‘...’ before ‘<’ token
void buildGaussianPyramid( const Mat& base, vector<Mat>& pyr, int nOctaves ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:84:33: error: ‘vector’ does not name a type
void buildDoGPyramid( const vector<Mat>& pyr, vector<Mat>& dogpyr ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:84:39: error: expected ‘,’ or ‘...’ before ‘<’ token
void buildDoGPyramid( const vector<Mat>& pyr, vector<Mat>& dogpyr ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:85:39: error: ‘vector’ does not name a type
void findScaleSpaceExtrema( const vector<Mat>& gauss_pyr, const vector<Mat>& dog_pyr,
^
/usr/include/opencv2/nonfree/features2d.hpp:85:45: error: expected ‘,’ or ‘...’ before ‘<’ token
void findScaleSpaceExtrema( const vector<Mat>& gauss_pyr, const vector<Mat>& dog_pyr,
^
/usr/include/opencv2/nonfree/features2d.hpp:89:40: error: ‘vector’ has not been declared
void detectImpl( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:89:46: error: expected ‘,’ or ‘...’ before ‘<’ token
void detectImpl( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:90:41: error: ‘vector’ has not been declared
void computeImpl( const Mat& image, vector<KeyPoint>& keypoints, Mat& descriptors ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:90:47: error: expected ‘,’ or ‘...’ before ‘<’ token
void computeImpl( const Mat& image, vector<KeyPoint>& keypoints, Mat& descriptors ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:125:28: error: ‘vector’ has not been declared
CV_OUT vector<KeyPoint>& keypoints) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:125:34: error: expected ‘,’ or ‘...’ before ‘<’ token
CV_OUT vector<KeyPoint>& keypoints) const;
^
In file included from /usr/include/opencv2/nonfree/nonfree.hpp:46:0,
from panaroma.cpp:7:
/usr/include/opencv2/nonfree/features2d.hpp:128:28: error: ‘vector’ has not been declared
CV_OUT vector<KeyPoint>& keypoints,
^
/usr/include/opencv2/nonfree/features2d.hpp:128:34: error: expected ‘,’ or ‘...’ before ‘<’ token
CV_OUT vector<KeyPoint>& keypoints,
^
/usr/include/opencv2/nonfree/features2d.hpp:127:10: error: ‘void cv::SURF::operator()(cv::InputArray, cv::InputArray, int) const’ cannot be overloaded
void operator()(InputArray img, InputArray mask,
^
In file included from /usr/include/opencv2/nonfree/nonfree.hpp:46:0,
from panaroma.cpp:7:
/usr/include/opencv2/nonfree/features2d.hpp:124:10: error: with ‘void cv::SURF::operator()(cv::InputArray, cv::InputArray, int) const’
void operator()(InputArray img, InputArray mask,
^
In file included from /usr/include/opencv2/nonfree/nonfree.hpp:46:0,
from panaroma.cpp:7:
/usr/include/opencv2/nonfree/features2d.hpp:132:5: error: ‘AlgorithmInfo’ does not name a type
AlgorithmInfo* info() const;
^
/usr/include/opencv2/nonfree/features2d.hpp:142:40: error: ‘vector’ has not been declared
void detectImpl( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:142:46: error: expected ‘,’ or ‘...’ before ‘<’ token
void detectImpl( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:143:41: error: ‘vector’ has not been declared
void computeImpl( const Mat& image, vector<KeyPoint>& keypoints, Mat& descriptors ) const;
^
/usr/include/opencv2/nonfree/features2d.hpp:143:47: error: expected ‘,’ or ‘...’ before ‘<’ token
void computeImpl( const Mat& image, vector<KeyPoint>& keypoints, Mat& descriptors ) const;
^
编辑 1所以,我实际面临的问题是我试图使用正在开发中的软件包而不是稳定版本。我只需要执行 git checkout 3.0.0
即可获得稳定版本。
最佳答案
打开位于/usr/include/opencv2/nonfree/features2d.hpp 的文件 features2d.hpp你应该是一个 sudo usr 来编辑文件。将“vector”头文件添加为#include
这应该可以解决您的问题。问候,阿维纳什
关于c++ - opencv-3.0.0 ubuntu 14.04 "nonfree/nonfree.hpp"构建错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33560251/
首先我安装了 Cmake 和 opencv。然后通过添加环境使用 mingw32-make 等在 QT 上安装 OpenCV。我将库包含在 .pro 文件中。我不知道为什么找不到这些包含。 image
我目前正在做一个 C++ 项目。 简而言之,我有 3 个类和一个 main.cpp 文件。 1) 列表类//使用一个 vector 2) 堆类 3) 树类//BST 为了正确组织自己,我将每个类分成单
这个问题在这里已经有了答案: What is the difference between #include and #include "filename"? (31 个答案) 关闭 7 年前。
我使用 c++ 程序使用 opencv 2.1 进行图像处理。该程序包含以下文件: #include "opencv2/core/core.hpp" #include "opencv2/imgproc
大多数 OpenCV 中的每个示例代码都以这些行(或类似的东西)开头: #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui
我正在使用 boost.python 将 C++ 对象暴露给 python。 我应该使用 #include boost/python.hpp 或 #include boost/Python.hpp ?
这个问题在这里已经有了答案: How does the compilation/linking process work? (5 个答案) Why have header files and .cp
大家好,我正在尝试使用我从源代码构建的 opencv-c++ API(版本 4.4.0)。它安装在/usr/local/中,我只是尝试使用以下代码加载和显示图像 - #include #includ
我是 重写我的 Windows C++ native 库 (自 2002 年以来一直在努力)考虑到公开发布。在过去的 10 年里,我一直是这 150 多个 KLOC 的唯一受益者,我觉得其他人也可能会
boost中有两个随机整数生成器,boost::uniform_int<>和 boost::random::uniform_int_distribution<> ,后者仅在 boost 1.47 之后
我正在用 cmake 编译 opencv 程序。 代码如下: 显示图像.cpp: #include #include using namespace cv; int main(int argc,
我想知道是否可以直接在 CMakeLists.txt 中包含头文件,而不是 cpp 或 hpp 文件。我正在做一个项目,所有 cpp 文件都需要包含一些 hpp 文件。我可以添加 #include "
有的程序有第一个,有的程序有第二个。两者有什么区别,我们什么时候使用它们? 最佳答案 我认为这是一个合理的问题。引自 OpenCV documentation : Headers layout In
我是 opencv 库的初学者。我已经在 Ubuntu 17.04 上安装了它,安装过程中的一切都很完美,一点错误都没有。我已经安装了 Opencv-master,构建了它,然后我下载了 opencv
我试图找到一个很好的例子来说明如何使用这些二进制宽字符版本的 boost 序列化内容。我拼凑了一些代码来尝试让它工作,但不幸的是,我在尝试编译它时遇到了链接器错误的轰炸。 这是我的代码,以防我做任何明
我正在尝试集成来自 nlohmann 的 json C++ 库,同时简单地将“single_include”文件复制到与我的 main.cpp 文件相同的目录中。根据集成 instructions #
我对 linux 或 c++ 几乎一无所知。 我通常按照这些说明在 ubuntu 12.10 上构建 boost http://piyushparkash.blogspot.com/2012/10/i
我试图使用features2d文件夹中存在的features2d.hpp函数来检测图像的某些特征。使用此头文件时代码崩溃。当我从nonfree文件夹使用具有相同名称的头文件时,它可以正常工作。有人能弄
我想使用 stitching mechanism来自 C++ 中的 OpenCV 库,但在安装 OpenCV 3.0 后,我在“opencv2”文件夹中看不到任何 stitcher.hpp 文件。它在
我正在尝试使用网络摄像头检测车道。我可以在开始时编译它并对其进行测试,但是在更改了我曾经使用的机器之后。 它不再工作了。给我一些错误。 以下是代码 int run() { bool pause
我是一名优秀的程序员,十分优秀!