Qt程序退出,代码为-1073741819

时间:2013-01-25 01:46:59

标签: qt opencv

我正在开发一个基于面部识别的项目,在Windows 7中使用Qt和Opencv。我现在遇到了一个非常死胡同......我需要使用一些图像训练一个人脸识别器...但每当我注释掉火车声明,该计划运行良好,但没有支持我的目的......

void Dialog::on_btnAdd_2_clicked()
{
    tmrTimer->stop();

    dir=QDir(directory);
    QFileInfoList files;
    QFileInfo file;
    QString filen;


    dir.setFilter(QDir::Files | QDir::Hidden | QDir::NoSymLinks);
    files=dir.entryInfoList();
    int nofiles;
    nofiles=files.size();
    for(int i=0;i<nofiles;i++)
    {
        file=files.at(i);
        filen=file.absoluteFilePath();


        std::string fname = filen.toStdString();

        filen=file.baseName();
        std::string filename=filen.toStdString();

        char* path = new char [fname.size()+1];
        char name[10];

        strcpy(name,filename.c_str());
        strcpy( path, fname.c_str() );

        name[1]='\0';

        ui->boxConsole->appendPlainText(path);
        ui->boxConsole->appendPlainText(name);

        cv::Mat temp=cv::imread(path,-1);
        newImages.push_back(temp);
        newLabels.push_back(atoi(name));
    }


    ui->boxConsole->appendPlainText("Training Started....!!");

    cv::Ptr<cv::FaceRecognizer> model = cv::createEigenFaceRecognizer();

    model->train(newImages,newLabels);   ///training statement

    //strcat(home,"\\data.xml");


    //model->save(home);


    ui->boxConsole->appendPlainText("Training Completed!!");
    tmrTimer->start();
}

当我运行项目并单击启动上述功能的按钮时,该过程崩溃说...

Problem signature:
  Problem Event Name:   APPCRASH
  Application Name: QtTracker3.exe
  Application Version:  0.0.0.0
  Application Timestamp:    5101dde0
  Fault Module Name:    libopencv_core242.dll
  Fault Module Version: 0.0.0.0
  Fault Module Timestamp:   50da6896
  Exception Code:   c0000005
  Exception Offset: 000a38f0
  OS Version:   6.1.7600.2.3.0.256.1
  Locale ID:    1033
  Additional Information 1: 0a9e
  Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
  Additional Information 3: 0a9e
  Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

Read our privacy statement online:
  http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
  C:\Windows\system32\en-US\erofflps.txt

我修改了以下代码,并采取了建议......并陷入了另一个问题......

void Dialog::on_btnAdd_2_clicked()
{
    tmrTimer->stop();

    dir=QDir(directory);
    QFileInfoList files;
    QFileInfo file;
    QString filen;

    char name[10];
    int i,j;
    std::string str;


    dir.setFilter(QDir::Files | QDir::Hidden | QDir::NoSymLinks);
    files=dir.entryInfoList();
    int nofiles;
    nofiles=files.size();

    for(i=0;i<nofiles;i++)
        {
            file=files.at(i);
            filen=file.baseName();
            std::string filename=filen.toStdString();
            strcpy(name,filename.c_str());

            for(j=0;name[j]!='-';j++);
            name[j]='\0';

            filen=file.absoluteFilePath();
            str=filen.toStdString();

            cv::Mat offimage=cv::imread(str.c_str(),-1);

            cv::namedWindow("face",WINDOW_AUTOSIZE);     //show retrieved image in a window
            cv::imshow("face",offimage);
            cvvWaitKey(1000);

            newImages.push_back(offimage);
            newLabels.push_back(atoi(name));


        }

我删除了for循环中使用的指针,并且仍然存在同样的问题......

我还发现问题标签中的qt创建者报告了一个问题:

:-1: warning: auto-importing has been activated without --enable-auto-import specified on the command line.

1 个答案:

答案 0 :(得分:0)

当您的代码崩溃时,请使用调试器找出它崩溃的位置。如果您不理解原因,请在问题中添加回溯。

我认为在循环文件时你的崩溃是在文件名处理中。 您正在使用char *而不是std :: string或QString而不是正确地执行它来打开多个蠕虫病毒。

这一次,这是非常不安全的,也是不安全的(缓冲区溢出):

    char name[10];
    ...
    strcpy(name,filename.c_str());

如果文件名长于9,则行为未定义(崩溃,很可能)。

你也在泄漏内存,因为永远不会释放这个分配:char * path = new char [fname.size()+ 1];

所以我强烈建议使用QString而不是摆弄char *。如果你需要将char *传递给OpenCV,你可以这样做:

const QByteArray ba = filename.toLatin1(); //or toUtf8(), toLocal8Bit(), depending on the encoding you need
... functionTakingChar( ba.constData(), -1 ); // or .data(), if imread() takes a non-const char

imread采用std :: string,所以:

... imread( filename.toStdString(), -1 );