0

我想在参数为 QString 的 LineEdit 中显示 10x10 窗口 CV_IMAGE_ELEM 的结果。

我应该考虑以下几点:

for (int y=0;y<10;y++)
{
    for (int x=0;x<10;x++) //width
    {
        QString qstr= CV_IMAGE_ELEM(img_crop_mat, uchar, y, x*3+ 2);
        QString ctot= qstr + ctot;
        lineEdit_mat->setText(ctot + " ");
    }
    lineEdit_mat->setText("\n");
}

谢谢你。

4

1 回答 1

0

尝试循环

myQString.append(QString("%1 ").arg((int) IPL_IMAGE_ELEM(...) ));

这是假设您要以数字格式打印图像数据。

于 2013-03-05T14:18:53.350 回答