0

我现在才开始学习如何使用 openCV 库。我已经下载并安装了 openCV 2.4.0,并运行了一些示例项目。在这段代码中,我试图从 goodFeaturesToTrack 获取输出并在图像上绘制点。代码编译,但每次我运行它,它崩溃,我得到以下错误:


Windows 在 Corner.exe 中触发了一个断点。

这可能是由于堆损坏,这表明 Corner.exe 或其已加载的任何 DLL 中存在错误。

这也可能是由于用户在 Corner.exe 具有焦点时按 F12。

输出窗口可能有更多诊断信息。


输出窗口没有更多的诊断信息。我已将错误追溯到 goodFeaturesToTrack 函数。这是有问题的代码:

// Corner.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <opencv.hpp>
#include <opencv_modules.hpp>
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>

#include <iostream>
#include <string>
#include <iomanip>
#include <sstream>

using namespace cv; //If you don't have this, you won't be able to create a mat...
using namespace std;


#include <stdio.h>
#include <cv.h>
#include <highgui.h>
#include <math.h>

//Whole bunch of #defines to make editing the code a lot easier

#define MAX_FEATURES 5
#define FILENAME "C:/Users/Mitchell/Desktop/lol.jpg"

int main(void)
{
    namedWindow("Out", CV_WINDOW_AUTOSIZE);
    namedWindow("In", CV_WINDOW_AUTOSIZE);  
    Mat Img;
    Img = cvLoadImage(FILENAME, CV_LOAD_IMAGE_GRAYSCALE);

    if(!Img.data)
    {
        fprintf(stderr, "ERROR: Couldn't open picture.");
        waitKey();
        return -1;
    }

    else
    {
        imshow("In", Img);
        waitKey();
    }

    std::vector<cv::Point2f> Img_features;
    int number_of_features = MAX_FEATURES;

    Mat Out = Mat::zeros(Img.cols, Img.rows, CV_32F);

    goodFeaturesToTrack(Img, Img_features, MAX_FEATURES, .01, .1, noArray(), 3, false);

    fprintf(stdout, "Got here...");

    /*for (int i = 0; i < MAX_FEATURES; i++)
    {
        Point2f p = Img_features[i];
        ellipse(Img, p, Size(1,1), 0, 0, 360, Scalar(255,0,0));
    }*/

    imshow("Out", Out);

    waitKey(0);
    return 0;


}

这是图书馆中的错误,还是我在做一些愚蠢的事情?

4

1 回答 1

0

在调用goodFeatures之前可能是Img_featuresvector应该有项目?MAX_FEATURESImg_features.resize(MAX_FEATURES)在 goodFeatures 调用之前尝试。

于 2012-11-09T04:55:35.727 回答