新建的Qt一定要
库文件
包含路径
重启Qt
代码编写
#include "widget.h"
#include "ui_widget.h"
#include
using namespace cv;
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
Mat src = imread("D:/hutao.png");
imshow("hutao",src);
waitKey(0);
destroyAllWindows();
}
Widget::~Widget()
{
delete ui;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)