我想在参数为 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");
}
谢谢你。