1

我目前正在使用 Qt 编程,但有一个我不明白的问题。我不确定这是由 Qt 引起的。

我有这个代码:

cimg_library::CImg<float> img = model->convert("photo.jpg", 15);
model->save(img, "resIhm.jpg");

这很好用,但是当我引入一些 QT 代码(这里是 QApplication 对象的声明)时,方法“convert”有不同的结果..

QApplication *app = new QApplication(argc,argv);    
cimg_library::CImg<float> img = model->convert("photo.jpg", 15);
model->save(img, "resIhm.jpg");

但如果我这样做:

cimg_library::CImg<float> img = model->convert("photo.jpg", 15);
model->save(img, "resIhm.jpg");
QApplication *app = new QApplication(argc,argv); 

它再次起作用。事实上,这两行代码通常在 Qt SLOT 中执行,所以我必须先声明我的 QApplication 对象。

我确信没有 QApplication 声明它可以工作。这段代码在我的主要功能中,用于调试目的。

此外,当我使用 QCoreApplication 时,它也可以工作。Qt 是否修改 C++ 流?

谢谢你的帮助 :)

ps:我的 Model 类中没有使用 Qt。

编辑:使用的模型函数(目的是将图像转换为 ASCII 艺术):

CImg<float> Model::convert(const char* source, int tailleCaracteres) const throw (ConversionException) {
try {
  CImg<float> image(source);

  image.normalize(0,50);
  int nbRef = 95;
  CImgList<float> refCode(nbRef, tailleCaracteres, tailleCaracteres, 1, 3);

  float white[3] = {255,255,255};
  float black[3] = {0,0,0};

  int i = 0;
  for (char l=' '; l<='~'; l++) {
    if(l == '%') {
  char ch[3] = "";
  ch[0] = '%';
  ch[1] = l;
  ch[2] = '\0';
  refCode(i).draw_text(0, 0, ch, white, black, 1, tailleCaracteres);
    } else {
  char ch[2] = "";
  ch[0] = l;
  ch[1] = '\0';
  refCode(i).draw_text(0, 0, ch, white, black, 1, tailleCaracteres);
    }
    i++;
  }
  CImg<float> imgDest;
  CImgList<float> cols = image.get_split('y', -tailleCaracteres);

  for(unsigned int i=0; i<cols.size(); i++) {
    CImgList<float> rows = cols(i).get_split('x', -tailleCaracteres);
    CImg<float> destRows;

    for(unsigned int j=0; j<rows.size(); j++) {
      int indice = recupImgProcheErreur(rows(j), refCode);
  destRows.append(refCode(indice), 'x');
}
    imgDest.append(destRows, 'y');
  }
  return  imgDest;
}
catch (CImgIOException exp) {
  throw ConversionException(std::string(exp.what())); 
}
}


int Modele::calculErreur(CImg<float> img, CImg<float> car) const {
  int erreur = 0;
  cimg_forX(img, i) {
    cimg_forY(img, j) {
        erreur += img(i,j,0,0) - car.atXY(i,j);
    }
  }
  return erreur;
}


void Modele::save(CImg<float> img, const char* pathDestination) const {
  img.save(pathDestination);
}

Valgrind 告诉我这一行有问题(条件跳转或移动取决于未初始化的值): erreur += img(i,j,0,0) - car.atXY(i,j);

我今天下午试图修复它,但失败了。我知道它带有 car.atXY(i,j) (我认为它与 car(i,j,0,0) 相同)。

抱歉,如果您不理解变量名称,它是法语的,但请随时问我 :)

4

0 回答 0