调试错误 - R6025纯虚函数调用(无虚拟调用)

时间:2015-07-14 04:09:31

标签: c++ opencv visual-studio-2013 pure-virtual r6025

我是C ++的新手,正在尝试浏览我在网上找到的一些OpenCV教程。我完全按照Visual Studio 2013中的代码生成了代码,并且能够正确运行代码。但是,我一直收到错误:

  

(按重试调试应用程序)调试错误!

     

程序:   ... rface_Basics \ 64 \调试\ OpenCV_Basics_CPP_Interface_Basics.exe

     

R6025    - 纯虚函数调用

     

(按“重试”调试应用程序)

我正在阅读关于纯虚函数的内容,听起来你必须至少声明一个虚函数才能发生这个错误,这只会导致更多的混乱。以下是我的代码:

#include <opencv2\opencv.hpp>
#include <iostream>

using namespace cv;
using namespace std;

//main functions
void processImage();
void displayGraphics();

//images
Mat image;
Mat processedImage;

int main(int argc, char *argv[])
{
    //create a window
    namedWindow("Image");
    namedWindow("ProcessedImage");

    //load the image
    if (argc > 1)
        image = imread(argv[1]);
    else
        image = imread("lena.jpg");
    if (image.empty())
        exit(1);

    processImage();
    displayGraphics();

    waitKey(0);

    return 0;
}

void displayGraphics()
{
    //display both images
    imshow("Image", image);
    imshow("ProcessedImage", processedImage);
}

void processImage()
{
    int x, y;
    Vec3b pixel;
    unsigned char R, G, B;
    processedImage = image.clone();

    for (y = 0; y < processedImage.rows; y++)
    {
        for (x = 0; x < processedImage.cols; x++)
        {
            // Get the pixel at (x,y)
            pixel = processedImage.at<Vec3b>(y, x);
            // Get the separate colors
            B = pixel[0];
            G = pixel[1];
            R = pixel[2];
            // Assign the complement of each color
            pixel[0] = 255 - B;
            pixel[1] = 255 - G;
            pixel[2] = 255 - R;
            // Write the pixel back to the image
            processedImage.at<Vec3b>(y, x) = pixel;
        }
    }
}

我尝试从main函数中删除参数并完成上面引用中提供的调试过程。但是,它只是调用此crt0msg.c文件并突出显示#ifdef _DEBUG部分的案例1。

非常感谢任何解决此问题的帮助。

2 个答案:

答案 0 :(得分:2)

使用导致问题的静态或全局Mat。

  

我在

中找到了问题
>    MatAllocator* Mat::getStdAllocator() {
>    static StdMatAllocator allocator;//it's static. but mat's destructor need >it. so when that's have a static or global mat, can not be guaranteed this >allocator's destructor after that static or global mat.
>    return allocator;
>    }

来源:http://code.opencv.org/issues/3355

这是OpenCV中的一个开放缺陷(尚未修复)。 尝试将您的开放式简历更新到最新版本,缺陷记录提及可能有助于您解决此问题的部分修复。

答案 1 :(得分:1)

    Mat image;
    Mat processedImage;

那是全球宣言的问题。呼叫

    image.release();
    processedImage.release(); 

之前的

    return 0;

主要。这个问题似乎与最近的opencv3.0有关(我曾使用过alpha和beta版本,RC1版本并没有给出任何此类错误。)