c++ - APPCRASH(不在调试时)和使用 QtCreator (C/C++) 的段错误

标签 c++ segmentation-fault qt-creator crash

我正在使用 QtCreator 编写一个我已经在 Matlab 上编写的算法。

在编写这个程序时,我有两个错误。第一个(APPPCRASH)在我正常构建和执行程序时出现,但在我尝试调试它(Heisenbug)时不会出现,并且它出现在函数“matriceA”上。我尝试使变量可变并在其他函数上编写矩阵 A 项公式,希望这会停止编译器优化(我认为编译器优化可能会导致问题),但我一直无法解决问题。我没有尝试使用选项 -o0 来编译该项目,因为我的教授(这是一个大学项目)必须能够正常编译它(没有特定选项)。

第二个是 SISSEGV 段错误。当代码到达“DestroyFloatArray(&b, width);”时就会发生这种情况关于 InpaintingColor。

这里是代码:

clanu_process.cpp(有点乱,因为我尝试了很多东西......)

#include "clanu_process.h"
#include "iomanip"


void InpaintingColor(float **Rout, float **Gout, float **Bout, float **Rin, float **Gin, float **Bin, float **Mask, int width, int height, double param)
{
    cout << "1" << endl;
    float alphak = 0, bethak = 0, res = 0;
    float **b = 0, **xk = 0, **dk = 0, **rk = 0, **Ark = 0, **tmp1 = 0,**tmp2 = 0,**tmp3 = 0;
    Ark = AllocateFloatArray( width, height);
    tmp1 = AllocateFloatArray( width, height);
    tmp2 = AllocateFloatArray( width, height);
    tmp3 = AllocateFloatArray( width, height);
    xk = AllocateFloatArray( width, height);
    dk = AllocateFloatArray( width, height);
    rk = AllocateFloatArray( width, height);
    b = AllocateFloatArray( width, height);

    cout << "2" << endl;
    res = 1e8;
    matrixProductByScalar(b,1.0/(3.0*256),Rin,width,height);
    matrixDuplicate(xk, b, width, height);
    // APPCRASH error
    matriceA(Ark,xk,Mask,width,height);

    //More code

    // SIGSEGV error
    DestroyFloatArray(&b, width);
    DestroyFloatArray(&xk, width);
    DestroyFloatArray(&dk, width);
    DestroyFloatArray(&rk, width);
    DestroyFloatArray(&Ark, width);
    DestroyFloatArray(&tmp1, width);
    DestroyFloatArray(&tmp2, width);
    DestroyFloatArray(&tmp3, width);
}
float** matriceA(float **A, float **I, float **Masque, int N2, int N1){
    volatile bool bool_iplus = false, bool_imoins = false, bool_jmoins = false, bool_jplus = false;
    volatile int iplus = 0, imoins = 0, jplus = 0, jmoins = 0;

    for(int i = 1; i <= N1; i++){
        bool_iplus = i<N1;
        iplus = i+1 < N1 ? i+1 : N1;
        bool_imoins = i>1;
        imoins = i-1 > 1 ? i-1 : 1;

        for(int j = 1; j <= N2; j++){

            bool_jplus = j<N2;
            jplus = j+1 < N2 ? j+1 : N2;
            bool_jmoins = j>1;
            jmoins = j -1 > 1 ? j-1 : 1;
            if(Masque[i-1][j-1]!=0){
                //cout << "if - " << i << ", " << j<< endl;
                A[i-1][j-1] = (1.0/36)*(16*I[i-1][j-1]
                 + 4*(
                    (bool_iplus?I[iplus-1][j-1]:0)
                    + (bool_imoins?I[imoins-1][j-1]:0)
                    + (bool_jplus?I[i-1][jplus-1]:0)
                    + (bool_jmoins?I[i-1][jmoins-1]:0)
                 )+(
                    (bool_iplus&&bool_jplus?I[iplus-1][jplus-1]:0)
                    + (bool_imoins&&bool_jplus?I[imoins-1][jplus-1]:0)
                    + (bool_imoins&&bool_jmoins?I[imoins-1][jmoins-1]:0))
                 + (bool_iplus&&bool_jmoins?I[iplus-1][jmoins-1]:0));
            }else{
                //cout << "else - " << i << ", " << j << endl;
                A[i-1][j-1]=
                    -(1.0*N1*N2)*(
                        -8.0*I[i-1][j-1]
                        + I[iplus-1][j-1]
                        + I[imoins-1][j-1]
                        + I[i-1][jplus-1]
                        + I[i-1][jmoins-1]
                        + I[iplus-1][jplus-1]
                        + I[imoins-1][jplus-1]
                        + I[imoins-1][jmoins-1]
                        + I[iplus-1][jmoins-1]);
            }
        }
    }
    return A;
}

函数AllocateFloatArray和DestroyFloatArray

float ** AllocateFloatArray(int width, int height)
{
    float ** r = new float*[width];
    for(int i=0; i<width; i++)
        r[i] = new float[height];
    return r;
}

void DestroyFloatArray(float ***a, int width)
{
    if( *a == 0 ) return;
    for(int i=0; i<width; i++)
        delete[] a[0][i];
    delete[] *a;
    *a = 0;
}

感谢您的宝贵时间。

最佳答案

我不确定这是否是您问题的原因,但是...

您的函数“矩阵运算”( sum()matrixSubstraction()matrixAddition()matrixProductByElement()matrixProductByScalar()matrixDuplicate() )将第一个索引的范围从零到 width第二个从零到 height .

如果我没记错的话,这是正确的,并且与分配/释放( AllocateFloatArray()DestroyFloatArray() )一致。

但是看看两个matriceA()功能;它们被定义为

float** matriceA(float **A, float **I, int N2, int N1)
float** matriceA(float **A, float **I, float **Masque, int N2, int N1)

在这两个函数中,第一个索引范围从零到 N1第二个从零到 N2 ;举例说明

for(int i = 1; i <= N1; i++){
// ...
   for(int j = 1; j <= N2; j++){
   // ...
      A[i-1][j-1] = (1.0/36)*(16*I[i-1][j-1] // ...

好。但你调用matriceA()就这样

matriceA(Ark,rk,Mask,width,height);

简单地说:您将矩阵分配为 width * height矩阵;你的“矩阵运算”将它们用作 width * height矩阵但是你的 matriceA()函数将它们用作 height * width .

摧毁内存的绝妙方式。

我想解决方案可能是

1) 开关 N1N2matriceA()定义

2) 或切换 widthheightmatriceA()调用

附注:抱歉我的英语不好。

关于c++ - APPCRASH(不在调试时)和使用 QtCreator (C/C++) 的段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37629105/

相关文章:

c++ - exit() 或异常会阻止调用范围结束的析构函数吗?

c - 使用 MPI_File_read_at 时出现段错误

c - [C] : Segmentation fault using strcpy() into String Arrays

c++ - 调用 always_inline 时内联失败,Qt 中的目标特定选项不匹配

c++ - 使用绝对路径指定库的 GCC 行为是什么

c++ - FFmpeg API 书籍、教程等

c++ - 奇怪的 QT 应用程序行为

带有 Qt 的 Android NDK 无法找到头文件

C++ 可变参数模板参数迭代

c++ - 为什么在超出数组末尾写入时不会出现段错误?