Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/cplusplus/131.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/opencv/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C++ OpenCV 3.0.0 SurfFeatureDetector和SurfDescriptor错误_C++_Opencv_Feature Detection_Feature Extraction_Surf - Fatal编程技术网

C++ OpenCV 3.0.0 SurfFeatureDetector和SurfDescriptor错误

C++ OpenCV 3.0.0 SurfFeatureDetector和SurfDescriptor错误,c++,opencv,feature-detection,feature-extraction,surf,C++,Opencv,Feature Detection,Feature Extraction,Surf,我正在尝试实现OpenCV 3.0.0 SURF功能描述和检测,但在OpenCV站点上运行示例代码后,我收到了大量与SURF相关的错误。你知道会出什么问题吗?谢谢 #include <stdio.h> #include <iostream> #include "opencv2/core.hpp" #include "opencv2/features2d.hpp" #include "opencv2/highgui.hpp" #include "opencv2/calib3

我正在尝试实现OpenCV 3.0.0 SURF功能描述和检测,但在OpenCV站点上运行示例代码后,我收到了大量与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/nonfree/nonfree.hpp>

using namespace cv;
using namespace cv::xfeatures2d;

void readme();

/** @function main */
int main(int argc, char** argv)
{
    if (argc != 3)
    {
        readme(); return -1;
    }

    Mat img_object = imread(argv[1], IMREAD_GRAYSCALE);
    Mat img_scene = imread(argv[2], IMREAD_GRAYSCALE);

    if (!img_object.data || !img_scene.data)
    {
        std::cout << " --(!) Error reading images " << std::endl; return -1;
    }

    //-- Step 1: Detect the keypoints using SURF Detector
    int minHessian = 400;

    Ptr<SURF> detector = SURF.create(minHessian);

    std::vector<KeyPoint> keypoints_object, keypoints_scene;

    detector.detect(img_object, keypoints_object);
    detector.detect(img_scene, keypoints_scene);

    //-- Step 2: Calculate descriptors (feature vectors)
    SurfDescriptorExtractor extractor;

    Mat descriptors_object, descriptors_scene;

    extractor.compute(img_object, keypoints_object, descriptors_object);
    extractor.compute(img_scene, keypoints_scene, descriptors_scene);

    //-- Step 3: Matching descriptor vectors using FLANN matcher
    FlannBasedMatcher matcher;
    std::vector< DMatch > matches;
    matcher.match(descriptors_object, descriptors_scene, matches);

    double max_dist = 0; double min_dist = 100;

    //-- Quick calculation of max and min distances between keypoints
    for (int i = 0; i < descriptors_object.rows; i++)
    {
        double dist = matches[i].distance;
        if (dist < min_dist) min_dist = dist;
        if (dist > max_dist) max_dist = dist;
    }

    printf("-- Max dist : %f \n", max_dist);
    printf("-- Min dist : %f \n", min_dist);

    //-- Draw only "good" matches (i.e. whose distance is less than 3*min_dist )
    std::vector< DMatch > good_matches;

    for (int i = 0; i < descriptors_object.rows; i++)
    {
        if (matches[i].distance < 3 * min_dist)
        {
            good_matches.push_back(matches[i]);
        }
    }

    Mat img_matches;
    drawMatches(img_object, keypoints_object, img_scene, keypoints_scene,
        good_matches, img_matches, Scalar::all(-1), Scalar::all(-1),
        std::vector<char>(), DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS);

    //-- Localize the object
    std::vector<Point2f> obj;
    std::vector<Point2f> scene;

    for (int i = 0; i < good_matches.size(); i++)
    {
        //-- Get the keypoints from the good matches
        obj.push_back(keypoints_object[good_matches[i].queryIdx].pt);
        scene.push_back(keypoints_scene[good_matches[i].trainIdx].pt);
    }

    Mat H = findHomography(obj, scene, RANSAC);

    //-- Get the corners from the image_1 ( the object to be "detected" )
    std::vector<Point2f> obj_corners(4);
    obj_corners[0] = cvPoint(0, 0); obj_corners[1] = cvPoint(img_object.cols, 0);
    obj_corners[2] = cvPoint(img_object.cols, img_object.rows); obj_corners[3] = cvPoint(0, img_object.rows);
    std::vector<Point2f> scene_corners(4);

    perspectiveTransform(obj_corners, scene_corners, H);

    //-- Draw lines between the corners (the mapped object in the scene - image_2 )
    line(img_matches, scene_corners[0] + Point2f(img_object.cols, 0), scene_corners[1] + Point2f(img_object.cols, 0), Scalar(0, 255, 0), 4);
    line(img_matches, scene_corners[1] + Point2f(img_object.cols, 0), scene_corners[2] + Point2f(img_object.cols, 0), Scalar(0, 255, 0), 4);
    line(img_matches, scene_corners[2] + Point2f(img_object.cols, 0), scene_corners[3] + Point2f(img_object.cols, 0), Scalar(0, 255, 0), 4);
    line(img_matches, scene_corners[3] + Point2f(img_object.cols, 0), scene_corners[0] + Point2f(img_object.cols, 0), Scalar(0, 255, 0), 4);

    //-- Show detected matches
    imshow("Good Matches & Object detection", img_matches);

    waitKey(0);
    return 0;
}

/** @function readme */
void readme()
{
    std::cout << " Usage: ./SURF_descriptor <img1> <img2>" << std::endl;
}
#包括
#包括
#包括“opencv2/core.hpp”
#包括“opencv2/features2d.hpp”
#包括“opencv2/highgui.hpp”
#包括“opencv2/calib3d.hpp”
#包括“opencv2/xfeatures2d.hpp”
#包括
使用名称空间cv;
使用名称空间cv::xFeature2D;
无效自述();
/**@主功能*/
int main(int argc,字符**argv)
{
如果(argc!=3)
{
readme();返回-1;
}
Mat img_object=imread(argv[1],imread_灰度);
Mat img_scene=imread(argv[2],imread_灰度);
如果(!img_object.data | |!img_scene.data)
{
标准::cout max_dist)max_dist=dist;
}
printf(“--Max dist:%f\n”,Max\u dist);
printf(“--最小距离:%f\n”,最小距离);
//--仅绘制“良好”匹配(即距离小于3*min\u dist)
标准::矢量良好匹配;
对于(int i=0;i c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(34):错误C2275:“cv::xfeatures2d::SURF”:将此类型非法用作表达式
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(111):参见“cv::xfeatures2d::SURF”的声明
1> c:\users\belayachiry\documents\visualstudio 2013\projects\imagewatch\imagewatch\source.cpp(34):错误C2228:“.create”的左边必须有class/struct/union
1> c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(38):错误C2039:“检测”:不是“cv::Ptr”的成员
1> c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(39):错误C2039:“检测”:不是“cv::Ptr”的成员
1> c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(42):错误C2259:“cv::xfeatures2d::SURF”:无法实例化抽象类
1> 由于下列成员:
1> “void cv::xfeatures2d::SURF::setHessianThreshold(double)”是抽象的
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(127):参见“cv::xfeatures2d::SURF::setHessianThreshold”的声明
1> “双cv::xfeatures2d::SURF::getHessianThreshold(void)const”:是抽象的
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(128):参见“cv::xfeatures2d::SURF::getHessianThreshold”的声明
1> 'void cv::xfeature2d::SURF::setNOctaves(int)':是抽象的
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(130):参见“cv::xfeatures2d::SURF::setNOctaves”的声明
1> “int cv::xfeatures2d::SURF::getNOctaves(void)const”:是抽象的
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(131):参见“cv::xfeatures2d::SURF::getNOctaves”的声明
1> 'void cv::xfeature2d::SURF::setNOctaveLayers(int)':是抽象的
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(133):参见“cv::xfeatures2d::SURF::setNOctaveLayers”的声明
1> “int cv::xfeature2d::SURF::getNOctaveLayers(void)const”:是抽象的
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(134):请参见“cv::xfeatures2d::SURF::getNOctaveLayers”的声明
1> “void cv::xfeature2d::SURF::setExtended(bool)”是抽象的
1> c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(136):参见“cv::xfeatures2d::SURF::setExtended”的声明
1>          '
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(34): warning C4832: token '.' is illegal after UDT 'cv::xfeatures2d::SURF'
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(111) : see declaration of 'cv::xfeatures2d::SURF'
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(34): error C2275: 'cv::xfeatures2d::SURF' : illegal use of this type as an expression
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(111) : see declaration of 'cv::xfeatures2d::SURF'
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(34): error C2228: left of '.create' must have class/struct/union
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(38): error C2039: 'detect' : is not a member of 'cv::Ptr<cv::xfeatures2d::SURF>'
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(39): error C2039: 'detect' : is not a member of 'cv::Ptr<cv::xfeatures2d::SURF>'
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(42): error C2259: 'cv::xfeatures2d::SURF' : cannot instantiate abstract class
1>          due to following members:
1>          'void cv::xfeatures2d::SURF::setHessianThreshold(double)' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(127) : see declaration of 'cv::xfeatures2d::SURF::setHessianThreshold'
1>          'double cv::xfeatures2d::SURF::getHessianThreshold(void) const' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(128) : see declaration of 'cv::xfeatures2d::SURF::getHessianThreshold'
1>          'void cv::xfeatures2d::SURF::setNOctaves(int)' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(130) : see declaration of 'cv::xfeatures2d::SURF::setNOctaves'
1>          'int cv::xfeatures2d::SURF::getNOctaves(void) const' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(131) : see declaration of 'cv::xfeatures2d::SURF::getNOctaves'
1>          'void cv::xfeatures2d::SURF::setNOctaveLayers(int)' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(133) : see declaration of 'cv::xfeatures2d::SURF::setNOctaveLayers'
1>          'int cv::xfeatures2d::SURF::getNOctaveLayers(void) const' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(134) : see declaration of 'cv::xfeatures2d::SURF::getNOctaveLayers'
1>          'void cv::xfeatures2d::SURF::setExtended(bool)' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(136) : see declaration of 'cv::xfeatures2d::SURF::setExtended'
1>          'bool cv::xfeatures2d::SURF::getExtended(void) const' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(137) : see declaration of 'cv::xfeatures2d::SURF::getExtended'
1>          'void cv::xfeatures2d::SURF::setUpright(bool)' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(139) : see declaration of 'cv::xfeatures2d::SURF::setUpright'
1>          'bool cv::xfeatures2d::SURF::getUpright(void) const' : is abstract
1>          c:\users\belayachiry\documents\opencv\opencv\build\include\opencv2\nonfree\nonfree.hpp(140) : see declaration of 'cv::xfeatures2d::SURF::getUpright'
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(87): warning C4018: '<' : signed/unsigned mismatch
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(105): warning C4244: 'argument' : conversion from 'int' to 'float', possible loss of data
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(105): error C3861: 'line': identifier not found
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(106): warning C4244: 'argument' : conversion from 'int' to 'float', possible loss of data
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(106): error C3861: 'line': identifier not found
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(107): warning C4244: 'argument' : conversion from 'int' to 'float', possible loss of data
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(107): error C3861: 'line': identifier not found
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(108): warning C4244: 'argument' : conversion from 'int' to 'float', possible loss of data
1>c:\users\belayachiry\documents\visual studio 2013\projects\imagewatch\imagewatch\source.cpp(108): error C3861: 'line': identifier not found