15 lines
319 B
C++
15 lines
319 B
C++
#include "VrEyeViewWidget.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
VrEyeViewWidget widget;
|
|
widget.setWindowTitle("VrEyeView - 相机图像查看与标定板检测");
|
|
widget.resize(900, 700);
|
|
widget.show();
|
|
|
|
return app.exec();
|
|
}
|