加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
吴冬亮 提交于 2020-03-10 13:58 . first
#include "mainwindow.h"
#include <QApplication>
#include <QSurfaceFormat>
#include <QOpenGLContext>
#include <opencv2/opencv.hpp>
#include <iostream>
#include <string>
#include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace cv;
int main(int argc, char *argv[])
{
/*
std::cout << "Hello, World!" << std::endl;
Mat image = Mat::zeros(200, 200, CV_8UC3);
rectangle(image, Point(0, 0), Point(100, 100), Scalar(255, 255, 255), -1, 4);
rectangle(image, Point(100, 100), Point(200, 200), Scalar(255, 255, 255), -1, 4);
image.convertTo(image, CV_8SC3);
imshow("Rect", image);
waitKey(0);
cv::imwrite("./first.jpg", image);
Mat img = cv::imread("./first.jpg");
imshow("Rect1", img);
waitKey(0);
*/
QApplication a(argc, argv);
ros::init(argc, argv, "listener");
QSurfaceFormat fmt;
fmt.setDepthBufferSize(24);
fmt.setVersion(3, 3);
fmt.setProfile(QSurfaceFormat::CoreProfile);
QSurfaceFormat::setDefaultFormat(fmt);
MainWindow w;
w.showMaximized();
return a.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化